Adding touch events

This commit is contained in:
Phips Peter 2014-09-23 15:08:56 -07:00
parent 18695fafca
commit 0827cbdbab

1
react/react.d.ts vendored
View File

@ -11,6 +11,7 @@ declare module "react" {
export function renderComponentToStaticMarkup(component: Descriptor<any>): string;
export function isValidClass(factory: Factory<any>): boolean;
export function isValidComponent(component: Descriptor<any>): boolean;
export function initializeTouchEvents(shouldUseTouch: boolean): void;
export interface Descriptor<P> {
props: P;