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

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;