mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
10 lines
295 B
TypeScript
10 lines
295 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/borisyankov/DefinitelyTyped
|
|
|
|
declare module 'deep-freeze' {
|
|
function df<T>(obj: T): T;
|
|
export = df;
|
|
}
|