UNPKG

@xylabs/typeof

Version:

Base functionality used throughout XY Labs TypeScript/JavaScript libraries

3 lines 182 B
/** A type guard function that narrows an unknown value to type T. */ export type IdentityFunction<T> = (value: unknown) => value is T; //# sourceMappingURL=IdentityFunction.d.ts.map