API reference › @evolu/common › Type › Int64String
const Int64String: brand(
"Int64",
NonEmptyTrimmedString,
(value) =>
trySync(
() => {
const maybeInt = globalThis.BigInt(value);
Int64.orThrow(maybeInt);
return value;
},
(): Int64StringError => ({ type: "Int64String", value }),
),
);
Defined in: packages/common/src/Type.ts:4084
Stringified Int64.