@smartinvoicexyz/graphql
Version:
Unified source for helpers and schema used across the GraphQL services within the Smart Invoice protocol.
18 lines (17 loc) • 400 B
TypeScript
export declare const scalars: {
BigDecimal: {
encode: (e: unknown) => string;
decode: (e: unknown) => bigint;
};
BigInt: {
encode: (e: unknown) => string;
decode: (e: unknown) => bigint;
};
Bytes: {
decode: (e: unknown) => string;
};
Int8: {
encode: (e: unknown) => string;
decode: (e: unknown) => number;
};
};