UNPKG

@flex-development/tutils

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