From 33844ff8a59bc8e5dcebe786a1e98f310900bbcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Tr=C3=A9ny?= Date: Tue, 3 Oct 2017 09:59:31 +0200 Subject: [PATCH] Fix type of NativeSyntheticEvent.timeStamp --- types/react-native/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index 16abbe3f6b..1f777fde22 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -365,7 +365,7 @@ interface NativeSyntheticEvent { preventDefault(): void stopPropagation(): void target: NodeHandle - timeStamp: Date + timeStamp: number type: string }