UNPKG

flora-exception

Version:

An exception system for FQL.

12 lines (11 loc) 291 B
/** * A performance container type. * Use this when you want to maintain: * - type hinting * - readability of type predicates * But, need to exclude: * - Deep type checks * @param p * @returns */ export declare const $Perf: <T>(p: (obj: any) => obj is T) => (obj: any) => obj is T;