Type alias StrictNullChecksWrapper<Name, Type>

StrictNullChecksWrapper<Name, Type>: undefined extends null
    ? `strictNullChecks must be true in tsconfig to use ${Name}`
    : Type

Type Parameters

  • Name extends string
  • Type