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