UNPKG

@flex-development/tutils

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