UNPKG

@taiga-ui/cdk

Version:

Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance

5 lines (4 loc) 220 B
export type TuiHandler<T, G> = (item: T) => G; export type TuiBooleanHandler<T> = TuiHandler<T, boolean>; export type TuiStringHandler<T> = TuiHandler<T, string>; export type TuiNumberHandler<T> = TuiHandler<T, number>;