DefinitelyTyped/types/deep-freeze-es6/index.d.ts
2017-09-20 14:54:28 -07:00

16 lines
437 B
TypeScript

// Type definitions for deep-freeze-es6 1.0
// Project: https://github.com/christophehurpeau/deep-freeze-es6
// Definitions by: Matt Bishop <https://github.com/mattbishop>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
/** Declaration file generated by dts-gen */
export = deepFreeze;
declare function deepFreeze<T>(obj: T): T;
declare namespace deepFreeze {
const prototype: {};
}