| 4982 | * @since 3.10.0 |
| 4983 | */ |
| 4984 | export interface NullOr<S extends Constraint> extends Union<readonly [S, Null]> { |
| 4985 | readonly "Rebuild": NullOr<S> |
| 4986 | } |
| 4987 | |
| 4988 | interface NullOrLambda extends Lambda { |
| 4989 | <S extends Constraint>(self: S): NullOr<S> |
no outgoing calls
no test coverage detected