export type Indexable = { [key: string]: T; }; export type Numeric = number | string; export type Nullable = T | null; export type Arrayable = T | T[];