/** * A dictionary object with string keys and any value type. */ export interface Dict { [id: string]: T; }