From 7231c9a1a7facd11f0221df85e95003ba7e5a00f Mon Sep 17 00:00:00 2001 From: Max Cantor Date: Mon, 1 Jul 2019 23:09:04 -0700 Subject: [PATCH] Add contentWidth and contentHeight to DeckProps The docs call for a number but strings (i.e. 95vw) seem to work fine. #361 suggested a problem but that code doesn't seem to exist anymore. --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index ebcfe4643..a9b94d79f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -167,6 +167,8 @@ declare module 'spectacle' { theme?: Theme; transition?: transitionType[]; transitionDuration?: number; + contentWidth?: string; + contentHeight?: string; } interface FillProps {