@flex-development/tutils
Version:
TypeScript utilities
14 lines (11 loc) • 300 B
text/typescript
/**
* @file Type Definitions - IndexSignature
* @module tutils/types/IndexSignature
*/
/**
* Object [index signatures][1].
*
* [1]: https://basarat.gitbook.io/typescript/type-system/index-signatures
*/
type IndexSignature = number | string | symbol
export { type IndexSignature as default }