From 5ea018ec971715eef2e9de088511eb2f625ded1c Mon Sep 17 00:00:00 2001 From: Pedro Poveda Date: Thu, 7 Jul 2016 17:03:46 -0400 Subject: [PATCH] fixed indenting and made MediaClass attributes mandatory --- react-bootstrap/react-bootstrap.d.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/react-bootstrap/react-bootstrap.d.ts b/react-bootstrap/react-bootstrap.d.ts index 443232ce57..04da49e1b9 100644 --- a/react-bootstrap/react-bootstrap.d.ts +++ b/react-bootstrap/react-bootstrap.d.ts @@ -1071,7 +1071,7 @@ declare module "react-bootstrap" { } class Position extends React.Component { } - // + // interface MediaLeftProps { align?: string; } @@ -1117,12 +1117,12 @@ declare module "react-bootstrap" { componentClass?: React.ReactType; } interface MediaClass extends React.ClassicComponentClass { - Left?: typeof MediaLeft; - Right?: typeof MediaRight; - Heading?: typeof MediaHeading; - Body?: typeof MediaBody; - List?: typeof MediaList; - ListItem?: typeof MediaListItem; + Left: typeof MediaLeft; + Right: typeof MediaRight; + Heading: typeof MediaHeading; + Body: typeof MediaBody; + List: typeof MediaList; + ListItem: typeof MediaListItem; } type Media = React.ClassicComponent; var Media: MediaClass;