From 7220c95be68358afc5e142a8b4481e8a8ed74a71 Mon Sep 17 00:00:00 2001 From: Yui T Date: Fri, 23 Jun 2017 11:21:12 -0700 Subject: [PATCH] Update to use newer TypeScript --- types/react-router-native/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/react-router-native/index.d.ts b/types/react-router-native/index.d.ts index 453d9b122a..f2ab1c72b1 100644 --- a/types/react-router-native/index.d.ts +++ b/types/react-router-native/index.d.ts @@ -2,7 +2,7 @@ // Project: https://github.com/ReactTraining/react-router-native // Definitions by: Eduard Zintz // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// TypeScript Version: 2.2 +// TypeScript Version: 2.3 export { match, @@ -23,7 +23,7 @@ import * as React from 'react'; import * as H from 'history'; export interface AndroidBackButtonProps { - children: Array; + children: React.Component[]; } export class AndroidBackButton extends React.Component {}