UNPKG

@pangolindex/sdk

Version:

🛠 An SDK for building applications on top of Pangolin.

9 lines (8 loc) • 373 B
export declare type Address = string; export declare type AddressTo<T> = Record<Address, T>; export declare type Mutable<T> = { -readonly [P in keyof T]: T[P]; }; export declare type Nullable<T> = T | null; export declare type Nullish<T> = Nullable<T> | undefined; export declare type Primitive = number | string | boolean | bigint | symbol | null | undefined;