From 9d6641d78fa8fda1b74bd951ba59052327cb7c00 Mon Sep 17 00:00:00 2001 From: johnwalley Date: Mon, 11 Jul 2022 10:58:30 +0100 Subject: [PATCH] fix: export LayoutPriority as enum and not const enum --- src/split-view/split-view.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/split-view/split-view.ts b/src/split-view/split-view.ts index 3657b4a6..6a979168 100644 --- a/src/split-view/split-view.ts +++ b/src/split-view/split-view.ts @@ -100,7 +100,7 @@ export interface SplitViewOptions { readonly getSashOrthogonalSize?: () => number; } -export const enum LayoutPriority { +export enum LayoutPriority { Normal = "NORMAL", Low = "LOW", High = "HIGH",