New to Kendo UI for Angular? Start a free 30-day trial
Predicate
A type which represents a function that returns a Boolean value.
const isGreaterThanTen: Predicate = (num: number) => num > 10;
isGreaterThanTen(2); // false
isGreaterThanTen(20); // true