quicktype 17.0.3 → 17.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/CompressedJSONFromStream.js +38 -26
- package/dist/cli/GraphQLIntrospection.js +41 -33
- package/dist/cli/TypeSource.d.ts +1 -1
- package/dist/cli/URLGrammar.js +3 -4
- package/dist/cli/index.js +364 -363
- package/dist/quicktype-core/Annotation.js +0 -2
- package/dist/quicktype-core/ConvenienceRenderer.d.ts +17 -17
- package/dist/quicktype-core/ConvenienceRenderer.js +81 -104
- package/dist/quicktype-core/DateTime.js +0 -1
- package/dist/quicktype-core/DeclarationIR.d.ts +1 -1
- package/dist/quicktype-core/DeclarationIR.js +10 -13
- package/dist/quicktype-core/EncodedMarkovChain.js +0 -1
- package/dist/quicktype-core/GatherNames.js +25 -47
- package/dist/quicktype-core/Graph.d.ts +2 -2
- package/dist/quicktype-core/Graph.js +19 -23
- package/dist/quicktype-core/GraphRewriting.d.ts +2 -2
- package/dist/quicktype-core/GraphRewriting.js +54 -65
- package/dist/quicktype-core/MakeTransformations.js +22 -23
- package/dist/quicktype-core/MarkovChain.d.ts +3 -3
- package/dist/quicktype-core/MarkovChain.js +8 -9
- package/dist/quicktype-core/Messages.d.ts +3 -3
- package/dist/quicktype-core/Messages.js +3 -8
- package/dist/quicktype-core/Naming.d.ts +11 -11
- package/dist/quicktype-core/Naming.js +61 -76
- package/dist/quicktype-core/Renderer.d.ts +6 -6
- package/dist/quicktype-core/Renderer.js +17 -34
- package/dist/quicktype-core/RendererOptions.d.ts +5 -5
- package/dist/quicktype-core/RendererOptions.js +3 -6
- package/dist/quicktype-core/Run.d.ts +9 -9
- package/dist/quicktype-core/Run.js +67 -72
- package/dist/quicktype-core/Source.d.ts +3 -3
- package/dist/quicktype-core/Source.js +18 -19
- package/dist/quicktype-core/TargetLanguage.d.ts +10 -10
- package/dist/quicktype-core/TargetLanguage.js +2 -6
- package/dist/quicktype-core/Transformers.d.ts +25 -25
- package/dist/quicktype-core/Transformers.js +66 -94
- package/dist/quicktype-core/Type.d.ts +43 -41
- package/dist/quicktype-core/Type.js +71 -96
- package/dist/quicktype-core/TypeBuilder.d.ts +2 -2
- package/dist/quicktype-core/TypeBuilder.js +47 -53
- package/dist/quicktype-core/TypeGraph.d.ts +4 -4
- package/dist/quicktype-core/TypeGraph.js +40 -49
- package/dist/quicktype-core/TypeUtils.d.ts +2 -2
- package/dist/quicktype-core/TypeUtils.js +22 -23
- package/dist/quicktype-core/UnifyClasses.js +12 -16
- package/dist/quicktype-core/UnionBuilder.d.ts +3 -3
- package/dist/quicktype-core/UnionBuilder.js +30 -33
- package/dist/quicktype-core/attributes/AccessorNames.d.ts +2 -2
- package/dist/quicktype-core/attributes/AccessorNames.js +17 -18
- package/dist/quicktype-core/attributes/Constraints.d.ts +3 -3
- package/dist/quicktype-core/attributes/Constraints.js +4 -8
- package/dist/quicktype-core/attributes/Description.js +5 -6
- package/dist/quicktype-core/attributes/EnumValues.js +3 -4
- package/dist/quicktype-core/attributes/StringTypes.d.ts +1 -1
- package/dist/quicktype-core/attributes/StringTypes.js +21 -24
- package/dist/quicktype-core/attributes/TypeAttributes.d.ts +3 -3
- package/dist/quicktype-core/attributes/TypeAttributes.js +10 -12
- package/dist/quicktype-core/attributes/TypeNames.d.ts +9 -9
- package/dist/quicktype-core/attributes/TypeNames.js +21 -49
- package/dist/quicktype-core/attributes/URIAttributes.d.ts +1 -1
- package/dist/quicktype-core/attributes/URIAttributes.js +6 -10
- package/dist/quicktype-core/index.js +125 -128
- package/dist/quicktype-core/input/CompressedJSON.d.ts +7 -7
- package/dist/quicktype-core/input/CompressedJSON.js +54 -49
- package/dist/quicktype-core/input/FetchingJSONSchemaStore.js +13 -5
- package/dist/quicktype-core/input/Inference.d.ts +2 -2
- package/dist/quicktype-core/input/Inference.js +17 -25
- package/dist/quicktype-core/input/Inputs.d.ts +2 -2
- package/dist/quicktype-core/input/Inputs.js +54 -38
- package/dist/quicktype-core/input/JSONSchemaInput.d.ts +11 -11
- package/dist/quicktype-core/input/JSONSchemaInput.js +523 -503
- package/dist/quicktype-core/input/JSONSchemaStore.d.ts +1 -1
- package/dist/quicktype-core/input/JSONSchemaStore.js +35 -24
- package/dist/quicktype-core/input/PostmanCollection.js +1 -2
- package/dist/quicktype-core/input/io/NodeIO.js +44 -55
- package/dist/quicktype-core/input/io/get-stream/index.js +2 -6
- package/dist/quicktype-core/language/All.js +2 -3
- package/dist/quicktype-core/language/CPlusPlus.d.ts +8 -8
- package/dist/quicktype-core/language/CPlusPlus.js +151 -185
- package/dist/quicktype-core/language/CSharp.d.ts +7 -7
- package/dist/quicktype-core/language/CSharp.js +72 -82
- package/dist/quicktype-core/language/Crystal.d.ts +2 -2
- package/dist/quicktype-core/language/Crystal.js +17 -18
- package/dist/quicktype-core/language/Dart.d.ts +4 -4
- package/dist/quicktype-core/language/Dart.js +34 -36
- package/dist/quicktype-core/language/Elm.d.ts +6 -6
- package/dist/quicktype-core/language/Elm.js +45 -47
- package/dist/quicktype-core/language/Golang.d.ts +4 -4
- package/dist/quicktype-core/language/Golang.js +20 -23
- package/dist/quicktype-core/language/Haskell.d.ts +5 -5
- package/dist/quicktype-core/language/Haskell.js +23 -25
- package/dist/quicktype-core/language/JSONSchema.d.ts +3 -3
- package/dist/quicktype-core/language/JSONSchema.js +16 -17
- package/dist/quicktype-core/language/Java.d.ts +2 -2
- package/dist/quicktype-core/language/Java.js +97 -97
- package/dist/quicktype-core/language/JavaScript.d.ts +7 -7
- package/dist/quicktype-core/language/JavaScript.js +17 -19
- package/dist/quicktype-core/language/JavaScriptPropTypes.js +13 -15
- package/dist/quicktype-core/language/JavaScriptUnicodeMaps.js +11 -12
- package/dist/quicktype-core/language/Kotlin.d.ts +2 -2
- package/dist/quicktype-core/language/Kotlin.js +37 -39
- package/dist/quicktype-core/language/Objective-C.d.ts +3 -3
- package/dist/quicktype-core/language/Objective-C.js +41 -45
- package/dist/quicktype-core/language/Php.d.ts +2 -2
- package/dist/quicktype-core/language/Php.js +41 -66
- package/dist/quicktype-core/language/Pike.d.ts +1 -1
- package/dist/quicktype-core/language/Pike.js +17 -18
- package/dist/quicktype-core/language/Python.d.ts +8 -8
- package/dist/quicktype-core/language/Python.js +64 -63
- package/dist/quicktype-core/language/Rust.d.ts +2 -2
- package/dist/quicktype-core/language/Rust.js +19 -21
- package/dist/quicktype-core/language/Swift.d.ts +7 -7
- package/dist/quicktype-core/language/Swift.js +804 -807
- package/dist/quicktype-core/language/TypeScriptFlow.d.ts +7 -7
- package/dist/quicktype-core/language/TypeScriptFlow.js +26 -28
- package/dist/quicktype-core/language/ruby/index.d.ts +4 -4
- package/dist/quicktype-core/language/ruby/index.js +24 -49
- package/dist/quicktype-core/language/ruby/keywords.js +0 -1
- package/dist/quicktype-core/rewrites/CombineClasses.js +8 -9
- package/dist/quicktype-core/rewrites/ExpandStrings.d.ts +1 -1
- package/dist/quicktype-core/rewrites/ExpandStrings.js +17 -18
- package/dist/quicktype-core/rewrites/FlattenStrings.js +6 -7
- package/dist/quicktype-core/rewrites/FlattenUnions.js +8 -9
- package/dist/quicktype-core/rewrites/InferMaps.js +10 -11
- package/dist/quicktype-core/rewrites/ReplaceObjectType.js +7 -8
- package/dist/quicktype-core/rewrites/ResolveIntersections.js +67 -68
- package/dist/quicktype-core/support/Acronyms.js +1 -3
- package/dist/quicktype-core/support/Chance.js +0 -10
- package/dist/quicktype-core/support/Converters.js +0 -1
- package/dist/quicktype-core/support/Strings.d.ts +4 -4
- package/dist/quicktype-core/support/Strings.js +16 -17
- package/dist/quicktype-core/support/Support.d.ts +1 -1
- package/dist/quicktype-core/support/Support.js +6 -30
- package/dist/quicktype-graphql-input/GraphQLSchema.d.ts +4 -4
- package/dist/quicktype-graphql-input/GraphQLSchema.js +0 -1
- package/dist/quicktype-graphql-input/index.d.ts +1 -1
- package/dist/quicktype-graphql-input/index.js +212 -229
- package/dist/quicktype-typescript-input/index.js +4 -28
- package/package.json +19 -25
|
@@ -11,7 +11,7 @@ import { uriInferenceAttributesProducer } from "./attributes/URIAttributes";
|
|
|
11
11
|
* For transformed type kinds that map to an existing primitive type, `primitive`
|
|
12
12
|
* must specify that type kind.
|
|
13
13
|
*/
|
|
14
|
-
export type TransformedStringTypeTargets = {
|
|
14
|
+
export declare type TransformedStringTypeTargets = {
|
|
15
15
|
jsonSchema: string;
|
|
16
16
|
primitive: PrimitiveNonStringTypeKind | undefined;
|
|
17
17
|
attributesProducer?: (s: string) => TypeAttributes;
|
|
@@ -48,14 +48,14 @@ declare const transformedStringTypeTargetTypeKinds: {
|
|
|
48
48
|
"bool-string": TransformedStringTypeTargets;
|
|
49
49
|
};
|
|
50
50
|
export declare const transformedStringTypeTargetTypeKindsMap: Map<string, TransformedStringTypeTargets>;
|
|
51
|
-
export type TransformedStringTypeKind = keyof typeof transformedStringTypeTargetTypeKinds;
|
|
52
|
-
export type PrimitiveStringTypeKind = "string" | TransformedStringTypeKind;
|
|
53
|
-
export type PrimitiveNonStringTypeKind = "none" | "any" | "null" | "bool" | "integer" | "double";
|
|
54
|
-
export type PrimitiveTypeKind = PrimitiveNonStringTypeKind | PrimitiveStringTypeKind;
|
|
55
|
-
export type NamedTypeKind = "class" | "enum" | "union";
|
|
56
|
-
export type TypeKind = PrimitiveTypeKind | NamedTypeKind | "array" | "object" | "map" | "intersection";
|
|
57
|
-
export type ObjectTypeKind = "object" | "map" | "class";
|
|
58
|
-
export declare const transformedStringTypeKinds: ReadonlySet<"
|
|
51
|
+
export declare type TransformedStringTypeKind = keyof typeof transformedStringTypeTargetTypeKinds;
|
|
52
|
+
export declare type PrimitiveStringTypeKind = "string" | TransformedStringTypeKind;
|
|
53
|
+
export declare type PrimitiveNonStringTypeKind = "none" | "any" | "null" | "bool" | "integer" | "double";
|
|
54
|
+
export declare type PrimitiveTypeKind = PrimitiveNonStringTypeKind | PrimitiveStringTypeKind;
|
|
55
|
+
export declare type NamedTypeKind = "class" | "enum" | "union";
|
|
56
|
+
export declare type TypeKind = PrimitiveTypeKind | NamedTypeKind | "array" | "object" | "map" | "intersection";
|
|
57
|
+
export declare type ObjectTypeKind = "object" | "map" | "class";
|
|
58
|
+
export declare const transformedStringTypeKinds: ReadonlySet<"time" | "date" | "date-time" | "uuid" | "uri" | "integer-string" | "bool-string">;
|
|
59
59
|
export declare function isPrimitiveStringTypeKind(kind: string): kind is PrimitiveStringTypeKind;
|
|
60
60
|
export declare function targetTypeKindForTransformedStringTypeKind(kind: PrimitiveStringTypeKind): PrimitiveNonStringTypeKind | undefined;
|
|
61
61
|
export declare function isNumberTypeKind(kind: TypeKind): kind is "integer" | "double";
|
|
@@ -68,24 +68,24 @@ export declare class TypeIdentity {
|
|
|
68
68
|
equals(other: any): boolean;
|
|
69
69
|
hashCode(): number;
|
|
70
70
|
}
|
|
71
|
-
export type MaybeTypeIdentity = TypeIdentity | undefined;
|
|
71
|
+
export declare type MaybeTypeIdentity = TypeIdentity | undefined;
|
|
72
72
|
export declare abstract class Type {
|
|
73
73
|
readonly typeRef: TypeRef;
|
|
74
74
|
protected readonly graph: TypeGraph;
|
|
75
|
-
|
|
76
|
-
constructor(typeRef: TypeRef, graph: TypeGraph);
|
|
77
|
-
|
|
75
|
+
readonly kind: TypeKind;
|
|
76
|
+
constructor(typeRef: TypeRef, graph: TypeGraph, kind: TypeKind);
|
|
77
|
+
readonly index: number;
|
|
78
78
|
abstract getNonAttributeChildren(): Set<Type>;
|
|
79
79
|
getChildren(): ReadonlySet<Type>;
|
|
80
80
|
getAttributes(): TypeAttributes;
|
|
81
|
-
|
|
81
|
+
readonly hasNames: boolean;
|
|
82
82
|
getNames(): TypeNames;
|
|
83
83
|
getCombinedName(): string;
|
|
84
|
-
abstract
|
|
84
|
+
abstract readonly isNullable: boolean;
|
|
85
85
|
abstract isPrimitive(): this is PrimitiveType;
|
|
86
|
-
abstract
|
|
86
|
+
abstract readonly identity: MaybeTypeIdentity;
|
|
87
87
|
abstract reconstitute<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>, canonicalOrder: boolean): void;
|
|
88
|
-
|
|
88
|
+
readonly debugPrintKind: string;
|
|
89
89
|
equals(other: any): boolean;
|
|
90
90
|
hashCode(): number;
|
|
91
91
|
protected abstract structuralEqualityStep(other: Type, conflateNumbers: boolean, queue: (a: Type, b: Type) => boolean): boolean;
|
|
@@ -96,26 +96,25 @@ export declare abstract class Type {
|
|
|
96
96
|
export declare function primitiveTypeIdentity(kind: PrimitiveTypeKind, attributes: TypeAttributes): MaybeTypeIdentity;
|
|
97
97
|
export declare class PrimitiveType extends Type {
|
|
98
98
|
readonly kind: PrimitiveTypeKind;
|
|
99
|
-
|
|
100
|
-
get isNullable(): boolean;
|
|
99
|
+
readonly isNullable: boolean;
|
|
101
100
|
isPrimitive(): this is PrimitiveType;
|
|
102
101
|
getNonAttributeChildren(): Set<Type>;
|
|
103
|
-
|
|
102
|
+
readonly identity: MaybeTypeIdentity;
|
|
104
103
|
reconstitute<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>): void;
|
|
105
104
|
protected structuralEqualityStep(_other: Type, _conflateNumbers: boolean, _queue: (a: Type, b: Type) => boolean): boolean;
|
|
106
105
|
}
|
|
107
106
|
export declare function arrayTypeIdentity(attributes: TypeAttributes, itemsRef: TypeRef): MaybeTypeIdentity;
|
|
108
107
|
export declare class ArrayType extends Type {
|
|
109
108
|
private _itemsRef?;
|
|
110
|
-
readonly kind
|
|
109
|
+
readonly kind: "array";
|
|
111
110
|
constructor(typeRef: TypeRef, graph: TypeGraph, _itemsRef?: number | undefined);
|
|
112
111
|
setItems(itemsRef: TypeRef): undefined;
|
|
113
112
|
private getItemsRef;
|
|
114
|
-
|
|
113
|
+
readonly items: Type;
|
|
115
114
|
getNonAttributeChildren(): Set<Type>;
|
|
116
|
-
|
|
115
|
+
readonly isNullable: boolean;
|
|
117
116
|
isPrimitive(): this is PrimitiveType;
|
|
118
|
-
|
|
117
|
+
readonly identity: MaybeTypeIdentity;
|
|
119
118
|
reconstitute<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>): void;
|
|
120
119
|
protected structuralEqualityStep(other: ArrayType, _conflateNumbers: boolean, queue: (a: Type, b: Type) => boolean): boolean;
|
|
121
120
|
}
|
|
@@ -129,16 +128,16 @@ export declare class GenericClassProperty<T> {
|
|
|
129
128
|
export declare class ClassProperty extends GenericClassProperty<TypeRef> {
|
|
130
129
|
readonly graph: TypeGraph;
|
|
131
130
|
constructor(typeRef: TypeRef, graph: TypeGraph, isOptional: boolean);
|
|
132
|
-
|
|
133
|
-
|
|
131
|
+
readonly typeRef: TypeRef;
|
|
132
|
+
readonly type: Type;
|
|
134
133
|
}
|
|
135
134
|
export declare function classTypeIdentity(attributes: TypeAttributes, properties: ReadonlyMap<string, ClassProperty>): MaybeTypeIdentity;
|
|
136
135
|
export declare function mapTypeIdentify(attributes: TypeAttributes, additionalPropertiesRef: TypeRef | undefined): MaybeTypeIdentity;
|
|
137
136
|
export declare class ObjectType extends Type {
|
|
138
|
-
readonly kind: ObjectTypeKind;
|
|
139
137
|
readonly isFixed: boolean;
|
|
140
138
|
private _properties;
|
|
141
139
|
private _additionalPropertiesRef;
|
|
140
|
+
readonly kind: ObjectTypeKind;
|
|
142
141
|
constructor(typeRef: TypeRef, graph: TypeGraph, kind: ObjectTypeKind, isFixed: boolean, _properties: ReadonlyMap<string, ClassProperty> | undefined, _additionalPropertiesRef: TypeRef | undefined);
|
|
143
142
|
setProperties(properties: ReadonlyMap<string, ClassProperty>, additionalPropertiesRef: TypeRef | undefined): void;
|
|
144
143
|
getProperties(): ReadonlyMap<string, ClassProperty>;
|
|
@@ -146,27 +145,29 @@ export declare class ObjectType extends Type {
|
|
|
146
145
|
private getAdditionalPropertiesRef;
|
|
147
146
|
getAdditionalProperties(): Type | undefined;
|
|
148
147
|
getNonAttributeChildren(): Set<Type>;
|
|
149
|
-
|
|
148
|
+
readonly isNullable: boolean;
|
|
150
149
|
isPrimitive(): this is PrimitiveType;
|
|
151
|
-
|
|
150
|
+
readonly identity: MaybeTypeIdentity;
|
|
152
151
|
reconstitute<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>, canonicalOrder: boolean): void;
|
|
153
152
|
protected structuralEqualityStep(other: ObjectType, _conflateNumbers: boolean, queue: (a: Type, b: Type) => boolean): boolean;
|
|
154
153
|
}
|
|
155
154
|
export declare class ClassType extends ObjectType {
|
|
155
|
+
kind: "class";
|
|
156
156
|
constructor(typeRef: TypeRef, graph: TypeGraph, isFixed: boolean, properties: ReadonlyMap<string, ClassProperty> | undefined);
|
|
157
157
|
}
|
|
158
158
|
export declare class MapType extends ObjectType {
|
|
159
|
+
readonly kind: "map";
|
|
159
160
|
constructor(typeRef: TypeRef, graph: TypeGraph, valuesRef: TypeRef | undefined);
|
|
160
|
-
|
|
161
|
+
readonly values: Type;
|
|
161
162
|
}
|
|
162
163
|
export declare function enumTypeIdentity(attributes: TypeAttributes, cases: ReadonlySet<string>): MaybeTypeIdentity;
|
|
163
164
|
export declare class EnumType extends Type {
|
|
164
165
|
readonly cases: ReadonlySet<string>;
|
|
165
|
-
|
|
166
|
+
kind: "enum";
|
|
166
167
|
constructor(typeRef: TypeRef, graph: TypeGraph, cases: ReadonlySet<string>);
|
|
167
|
-
|
|
168
|
+
readonly isNullable: boolean;
|
|
168
169
|
isPrimitive(): this is PrimitiveType;
|
|
169
|
-
|
|
170
|
+
readonly identity: MaybeTypeIdentity;
|
|
170
171
|
getNonAttributeChildren(): Set<Type>;
|
|
171
172
|
reconstitute<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>): void;
|
|
172
173
|
protected structuralEqualityStep(other: EnumType, _conflateNumbers: boolean, _queue: (a: Type, b: Type) => void): boolean;
|
|
@@ -176,31 +177,32 @@ export declare function setOperationTypeIdentity(kind: TypeKind, attributes: Typ
|
|
|
176
177
|
export declare function unionTypeIdentity(attributes: TypeAttributes, memberRefs: ReadonlySet<TypeRef>): MaybeTypeIdentity;
|
|
177
178
|
export declare function intersectionTypeIdentity(attributes: TypeAttributes, memberRefs: ReadonlySet<TypeRef>): MaybeTypeIdentity;
|
|
178
179
|
export declare abstract class SetOperationType extends Type {
|
|
179
|
-
readonly kind: TypeKind;
|
|
180
180
|
private _memberRefs?;
|
|
181
181
|
constructor(typeRef: TypeRef, graph: TypeGraph, kind: TypeKind, _memberRefs?: ReadonlySet<number> | undefined);
|
|
182
182
|
setMembers(memberRefs: ReadonlySet<TypeRef>): void;
|
|
183
183
|
protected getMemberRefs(): ReadonlySet<TypeRef>;
|
|
184
|
-
|
|
185
|
-
|
|
184
|
+
readonly members: ReadonlySet<Type>;
|
|
185
|
+
readonly sortedMembers: ReadonlySet<Type>;
|
|
186
186
|
getNonAttributeChildren(): Set<Type>;
|
|
187
187
|
isPrimitive(): this is PrimitiveType;
|
|
188
|
-
|
|
188
|
+
readonly identity: MaybeTypeIdentity;
|
|
189
189
|
protected reconstituteSetOperation<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>, canonicalOrder: boolean, getType: (members: ReadonlySet<TypeRef> | undefined) => void): void;
|
|
190
190
|
protected structuralEqualityStep(other: SetOperationType, conflateNumbers: boolean, queue: (a: Type, b: Type) => boolean): boolean;
|
|
191
191
|
}
|
|
192
192
|
export declare class IntersectionType extends SetOperationType {
|
|
193
|
+
kind: "intersection";
|
|
193
194
|
constructor(typeRef: TypeRef, graph: TypeGraph, memberRefs?: ReadonlySet<TypeRef>);
|
|
194
|
-
|
|
195
|
+
readonly isNullable: boolean;
|
|
195
196
|
reconstitute<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>, canonicalOrder: boolean): void;
|
|
196
197
|
}
|
|
197
198
|
export declare class UnionType extends SetOperationType {
|
|
199
|
+
kind: "union";
|
|
198
200
|
constructor(typeRef: TypeRef, graph: TypeGraph, memberRefs?: ReadonlySet<TypeRef>);
|
|
199
201
|
setMembers(memberRefs: ReadonlySet<TypeRef>): void;
|
|
200
|
-
|
|
202
|
+
readonly stringTypeMembers: ReadonlySet<Type>;
|
|
201
203
|
findMember(kind: TypeKind): Type | undefined;
|
|
202
|
-
|
|
203
|
-
|
|
204
|
+
readonly isNullable: boolean;
|
|
205
|
+
readonly isCanonical: boolean;
|
|
204
206
|
reconstitute<T extends BaseGraphRewriteBuilder>(builder: TypeReconstituter<T>, canonicalOrder: boolean): void;
|
|
205
207
|
}
|
|
206
208
|
export {};
|