From 73d621d48d24ba270dec42f82789bfbc911262cd Mon Sep 17 00:00:00 2001 From: Hayden Ball Date: Tue, 25 Jun 2019 15:46:52 +0100 Subject: [PATCH] Add width and height attributes to SideMenuSide type (#5235) --- lib/src/interfaces/Options.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/src/interfaces/Options.ts b/lib/src/interfaces/Options.ts index a032bc5e662..81fb4e91672 100644 --- a/lib/src/interfaces/Options.ts +++ b/lib/src/interfaces/Options.ts @@ -593,6 +593,14 @@ export interface SideMenuSide { * Enable or disable the side menu */ enabled?: boolean; + /** + * Set the width of the side menu + */ + width?: number; + /** + * Set the height of the side menu + */ + height?: number; } export interface OptionsSideMenu {