mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-04 16:04:45 +08:00
9 lines
137 B
TypeScript
9 lines
137 B
TypeScript
/// <reference path="deep-freeze.d.ts" />
|
|
|
|
import df = require('deep-freeze');
|
|
|
|
class Foo {
|
|
foo: string;
|
|
}
|
|
var foo:Foo = df(new Foo());
|