Icard/angular-clarity-master(work.../node_modules/primeng/ts-helpers/ts-helpers.d.ts

5 lines
241 B
TypeScript
Raw Normal View History

2024-07-16 15:23:22 +00:00
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;