From 8200deb71d49730584d8d09db5d134bd07e16f68 Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Sun, 1 Jan 2017 15:33:31 -0800 Subject: [PATCH] react: Add link about SyntheticEvent.target --- react/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/react/index.d.ts b/react/index.d.ts index 467af23d9f..02cedfb5b0 100644 --- a/react/index.d.ts +++ b/react/index.d.ts @@ -284,6 +284,7 @@ declare namespace React { stopPropagation(): void; isPropagationStopped(): boolean; persist(): void; + // If you thought this should be `EventTarget & T`, see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/12239 target: EventTarget; timeStamp: Date; type: string;