Type Alias WithoutUndefined<T>

WithoutUndefined<T>: T extends undefined
    ? never
    : T

Type Parameters

  • T