blob: a96f3cb699c68d2d614beb936319d9ccd2ecdd42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
declare module "ice"
{
namespace Ice
{
class OptionalFormat
{
static readonly F1:OptionalFormat;
static readonly F2:OptionalFormat;
static readonly F4:OptionalFormat;
static readonly F8:OptionalFormat;
static readonly Size:OptionalFormat;
static readonly VSize:OptionalFormat;
static readonly FSize:OptionalFormat;
static readonly Class:OptionalFormat;
static valueOf(value:number):OptionalFormat;
equals(other:any):boolean;
hashCode():number;
toString():string;
readonly name:string;
readonly value:number;
}
}
}
|