/** * A type guard function definition. * * @since v0.1.3 */ export type TypeGuard = (value: T) => value is V;