Type alias GuardTypeInput<Guard>

GuardTypeInput<Guard>: Guard extends TypeGuard<infer Input, infer _> ? Input : never

Returns a type that a Guard will assign to a variable.

Example

GuardType<typeof isTypeString> // string
GuardType<typeof Array.isArray> // unknown[]

Type Parameters

  • Guard

Generated using TypeDoc