pig-dam-core
Version:
Library that should be included in every Pig DAM project we build
18 lines • 537 B
TypeScript
/**
* 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