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