export interface Dict { [key: string]: T | undefined; } export interface ReadOnlyDict { readonly [key: string]: T | undefined; } //# sourceMappingURL=pitmart.dictionary.interface.d.ts.map