| 5028 | * @since 3.10.0 |
| 5029 | */ |
| 5030 | export interface NullishOr<S extends Constraint> extends Union<readonly [S, Null, Undefined]> { |
| 5031 | readonly "Rebuild": NullishOr<S> |
| 5032 | } |
| 5033 | |
| 5034 | interface NullishOrLambda extends Lambda { |
| 5035 | <S extends Constraint>(self: S): NullishOr<S> |
no outgoing calls
no test coverage detected