Options
All
  • Public
  • Public/Protected
  • All
Menu

Represents a storage object with strings as indexer keys.

This interface can be used with regular JavaScript objects, to represent their native property dynamic acessor:

const dictionary: Dictionary<number> = {};
dictionary["my-index"] = 1;

Type parameters

  • TOut

    Type of object stored by the dictionary.

Hierarchy

  • Dictionary

Indexable

[index: string]: TOut

Dictionary / native object string indexer.

This interface can be used with regular JavaScript objects, to represent their native property dynamic acessor:

const dictionary: Dictionary<number> = {};
dictionary["my-index"] = 1;

Legend

  • Module
  • Object literal
  • Variable
  • Function
  • Function with type parameter
  • Index signature
  • Type alias
  • Enumeration
  • Enumeration member
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Constructor
  • Property
  • Method
  • Index signature
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Accessor
  • Index signature
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Protected property
  • Protected method
  • Protected accessor
  • Private property
  • Private method
  • Private accessor
  • Static property
  • Static method

Generated using TypeDoc