TDictionary.ts 129 B

123
  1. /* eslint-disable @typescript-eslint/consistent-type-definitions */
  2. export type TDictionary <T = unknown> = {[key: string]: T};