Files
DefinitelyTyped/inherits/inherits.d.ts
T

12 lines
333 B
TypeScript

// Type definitions for inherits
// Project: https://github.com/isaacs/inherits
// Definitions by: Ilya Mochalov <https://github.com/chrootsu>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module "inherits" {
import {inherits} from "util";
export = inherits;
}