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