/** * A simple dictionary interface. */ export interface Dict { [key: string]: T; } /** * A type to narrow an interface by requiring a specific property or * properties that are optional in the base interface. */ export declare type RequireProperty = Required> & Omit;