Variable PrimitiveKindConst
PrimitiveKind: {
Number: { type: "Number" };
Integer: { type: "Integer" };
PositiveInteger: { type: "PositiveInteger" };
String: { type: "String" };
Iterable: <T extends SerializedPrimitiveKind>(
value: T,
) => { type: "Iterable"; value: T };
Graph: { type: "Graph" };
GraphEdge: { type: "GraphEdge" };
GraphNode: { type: "GraphNode" };
Tuple: <T extends SerializedPrimitiveKind>(
value: T[],
) => { type: "Tuple"; value: T[] };
Boolean: { type: "Boolean" };
Undefined: { type: "Undefined" };
Any: { type: "Any" };
} = ...
Type declaration
Readonly
Number: { type: "Number" }
Readonly
Integer: { type: "Integer" }
Readonly
PositiveInteger: { type: "PositiveInteger" }
Readonly
String: { type: "String" }
Readonly
Iterable: <T extends SerializedPrimitiveKind>(value: T) => { type: "Iterable"; value: T }
Readonly
Graph: { type: "Graph" }
Readonly
GraphEdge: { type: "GraphEdge" }
Readonly
GraphNode: { type: "GraphNode" }
Readonly
Tuple: <T extends SerializedPrimitiveKind>(value: T[]) => { type: "Tuple"; value: T[] }
Readonly
Boolean: { type: "Boolean" }
Readonly
Undefined: { type: "Undefined" }
Readonly
Any: { type: "Any" }