UNPKG

typedash

Version:

modern, type-safe collection of utility functions

20 lines 920 B
//#region src/functions/createTypeGuard/createTypeGuard.d.ts /** * Creates a type guard that checks if the given type is assignable to the given type. * @param values The values to check against. * @template {TInput} The type to check against, `unknown` by default. Pass in if you want to have a narrowed type for the type predicate (e.g. `string`). * @returns A type guard that checks if the given type is assignable to the given type. * @example * ```ts * const isValidValue = createTypeGuard(['foo', 'bar']); * * const value: unknown = '...'; * if (isValidValue(value)) { * // ✅ value is of type `'foo' | 'bar'` * } * ``` */ declare function createTypeGuard<const TKnownValue, TInput extends TKnownValue | unknown = unknown>(values: Iterable<TKnownValue>): (v: TInput) => v is TInput & TKnownValue; //#endregion export { createTypeGuard as t }; //# sourceMappingURL=createTypeGuard-jqKoBczn.d.ts.map