Merge pull request #8260 from mxl/master

react-tap-event-plugin definitions
This commit is contained in:
Masahiro Wakame
2016-02-26 21:00:50 +09:00
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,5 @@
/// <reference path="react-tap-event-plugin.d.ts"/>
import * as injectTapEventPlugin from 'react-tap-event-plugin';
injectTapEventPlugin();
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for react-tap-event-plugin
// Project: https://github.com/zilverline/react-tap-event-plugin
// Definitions by: Michael Ledin <https://github.com/mxl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module 'react-tap-event-plugin'{
var exports:()=>any;
export = exports;
}