If
Signature
export type If<T extends boolean, A, B = null> = T extends true ? A : B extends null ? A | null : B;Members
This export does not declare public properties or methods in the generated declaration file.
export type If<T extends boolean, A, B = null> = T extends true ? A : B extends null ? A | null : B;This export does not declare public properties or methods in the generated declaration file.