UNPKG

131 BTypeScriptView Raw
1/**
2 * Interface of the simple literal object with any string keys.
3 */
4export interface ObjectLiteral {
5 [key: string]: any;
6}