UNPKG

hermes-v2-sdk

Version:

⚒️ An SDK for building applications on top of Hermes V2

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;