UNPKG

@flex-development/tutils

Version:
12 lines (9 loc) 226 B
/** * @file Type Definitions - RegexString * @module tutils/types/RegexString */ /** * Value that can be a `RegExp` object or string literal. */ type RegexString = RegExp | string export { type RegexString as default }