zebec-instant-card-sdk
Version:
An sdk for interacting with zebec instant card program in solana.
11 lines (10 loc) • 393 B
TypeScript
declare const __label: unique symbol;
export type Labeled<T, Label> = T & {
[__label]: Label;
};
export type DecimalString = Labeled<string, "Decimal">;
export type PercentString = Labeled<string, "Percent">;
export type PublicKeyString = Labeled<string, "PubkeyString">;
export type EmailString = Labeled<string, "Email">;
export type BigIntString = Labeled<string, "BigInt">;
export {};