@flex-development/tutils
Version:
TypeScript utilities
12 lines (11 loc) • 308 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
*/
declare type IndexSignature = number | string | symbol;
export { type IndexSignature as default };