UNPKG

primeng

Version:

PrimeNG is a premium UI library for Angular featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock,

7 lines (5 loc) 277 B
declare type Booleanish = boolean | 'true' | 'false'; declare type Numberish = number | string; declare type Nullable<T = void> = T | null | undefined; declare type VoidListener = VoidFunction | null | undefined; export type { Booleanish, Nullable, Numberish, VoidListener };