/** * A function that check if value (`T`) matches some predicate. */ export type Predicate = (value: T) => boolean; /** * A function that check if value (`T`) is of type `T2`. */ export type Refinement = (value: T) => value is T2; //# sourceMappingURL=main.d.ts.map