UNPKG

270 BTypeScriptView Raw
1/**
2 * @author: JP Lew (jp@cto.ai)
3 * @date: Wednesday, 24th April 2019 11:31:59 am
4 * @lastModifiedBy: JP Lew (jp@cto.ai)
5 * @lastModifiedTime: Wednesday, 1st May 2019 3:06:03 pm
6 * @copyright (c) 2019 CTO.ai
7 */
8export interface Container<T> {
9 [key: string]: T;
10}