/** * A Generic dictionary with the value of a specific type. * * Keys _must_ be strings. */ export interface Dictionary { [Key: string]: T; }