Remove <reference path="../xxx/xxx.d.ts"> from definitions files and replace it with import * as Xxx from "xxx" or <reference types="xxx"/>

This commit is contained in:
Andy Hanson
2016-09-14 12:12:01 -07:00
parent 84a760de85
commit 28ef3d201b
474 changed files with 5552 additions and 3078 deletions

View File

@@ -3,7 +3,7 @@
// Definitions by: Rajab Shakirov <https://github.com/radziksh>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../react/react.d.ts"/>
/// <reference types="react"/>
declare module "react-modal" {
interface ReactModal {
@@ -23,6 +23,6 @@ declare module "react-modal" {
ariaHideApp?: boolean,
shouldCloseOnOverlayClick?: boolean
}
let ReactModal: __React.ClassicComponentClass<ReactModal>;
let ReactModal: React.ClassicComponentClass<ReactModal>;
export = ReactModal;
}