UNPKG

@flex-development/tutils

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