From 7316dccd5401253d20d1991f005cd72336b9d1ca Mon Sep 17 00:00:00 2001 From: Chad Auld Date: Sun, 21 May 2017 12:07:04 -0600 Subject: [PATCH] Adding missing property (onTouchTap) to material-ui GridTile component --- types/material-ui/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/material-ui/index.d.ts b/types/material-ui/index.d.ts index c69b4af323..79082c531b 100644 --- a/types/material-ui/index.d.ts +++ b/types/material-ui/index.d.ts @@ -1046,7 +1046,7 @@ declare namespace __MaterialUI { title?: React.ReactNode; titleBackground?: string; titlePosition?: "top" | "bottom"; - onTouchTap?: TouchTapEventHandler; + onTouchTap?: TouchTapEventHandler; } export class GridTile extends React.Component { }