UNPKG

@flex-development/tutils

Version:
10 lines (9 loc) 239 B
/** * @file Type Definitions - NullishString * @module tutils/types/NullishString */ /** * Type representing any string that can also be `null`. */ declare type NullishString = string | null; export { type NullishString as default };