Merge pull request #8154 from oizie/patch-1

fixes import from
This commit is contained in:
Horiuchi_H
2016-02-19 12:31:17 +09:00

View File

@@ -3,7 +3,13 @@
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module 'deep-freeze' {
function df<T>(obj: T): T;
export = df;
declare module DeepFreeze {
export interface DeepFreezeInterface {
<T>(obj: T): T;
}
}
declare module "deep-freeze" {
let deepFreeze: DeepFreeze.DeepFreezeInterface;
export = deepFreeze;
}