UNPKG

@flex-development/tutils

Version:
12 lines (11 loc) 308 B
/** * @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 };