Files

16 lines
438 B
TypeScript

// Type definitions for deep-freeze
// Project: https://github.com/substack/deep-freeze
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace DeepFreeze {
export interface DeepFreezeInterface {
<T>(obj: T): T;
}
}
declare module "deep-freeze" {
let deepFreeze: DeepFreeze.DeepFreezeInterface;
export = deepFreeze;
}