5 lines
241 B
TypeScript
5 lines
241 B
TypeScript
|
export declare type Booleanish = boolean | 'true' | 'false';
|
||
|
export declare type Numberish = number | string;
|
||
|
export declare type Nullable<T = void> = T | null | undefined;
|
||
|
export declare type VoidListener = VoidFunction | null | undefined;
|