@akanjs/base 0.0.136 → 0.0.138
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/package.json +1 -1
- package/src/scalar.d.ts +4 -4
package/package.json
CHANGED
package/src/scalar.d.ts
CHANGED
|
@@ -37,10 +37,10 @@ export declare const gqlScalars: readonly [StringConstructor, BooleanConstructor
|
|
|
37
37
|
export type GqlScalar = (typeof gqlScalars)[number];
|
|
38
38
|
export declare const gqlScalarNames: readonly ["ID", "Int", "Float", "String", "Boolean", "Date", "Upload", "JSON", "Map"];
|
|
39
39
|
export type GqlScalarName = (typeof gqlScalarNames)[number];
|
|
40
|
-
export declare const scalarSet: Set<
|
|
41
|
-
export declare const scalarNameMap: Map<
|
|
42
|
-
export declare const scalarArgMap: Map<
|
|
43
|
-
export declare const scalarDefaultMap: Map<
|
|
40
|
+
export declare const scalarSet: Set<MapConstructor | typeof Int | typeof Upload | typeof Float | typeof ID | typeof JSON | StringConstructor | BooleanConstructor | DateConstructor>;
|
|
41
|
+
export declare const scalarNameMap: Map<MapConstructor | typeof Int | typeof Upload | typeof Float | typeof ID | typeof JSON | StringConstructor | BooleanConstructor | DateConstructor, "ID" | "Int" | "Float" | "String" | "Boolean" | "Date" | "Upload" | "JSON" | "Map">;
|
|
42
|
+
export declare const scalarArgMap: Map<MapConstructor | typeof Int | typeof Upload | typeof Float | typeof ID | typeof JSON | StringConstructor | BooleanConstructor | DateConstructor, any>;
|
|
43
|
+
export declare const scalarDefaultMap: Map<MapConstructor | typeof Int | typeof Upload | typeof Float | typeof ID | typeof JSON | StringConstructor | BooleanConstructor | DateConstructor, any>;
|
|
44
44
|
export declare const isGqlClass: (modelRef: Type) => boolean;
|
|
45
45
|
export declare const isGqlScalar: (modelRef: Type) => boolean;
|
|
46
46
|
export declare const isGqlMap: (modelRef: any) => boolean;
|