UNPKG

@flex-development/tutils

Version:
12 lines (9 loc) 216 B
/** * @file Type Definitions - StringLike * @module tutils/types/StringLike */ /** * A value that has a `toString()` function. */ type StringLike = { toString(): string } export { type StringLike as default }