UNPKG

@flex-development/tutils

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