/** * Date: 3/9/18 * Time: 8:23 PM * @license MIT (see project's LICENSE file) */ import * as immutableArray from "./immutable/array"; import * as immutableObject from "./immutable/object"; import * as mutableArray from "./mutable/array"; import * as mutableObject from "./mutable/object"; export declare const immutable: { array: typeof immutableArray; object: typeof immutableObject; }; export declare const mutable: { array: typeof mutableArray; object: typeof mutableObject; }; //# sourceMappingURL=index.d.ts.map