Skip to content

Commit

Permalink
fix: export LayoutPriority as enum and not const enum (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwalley committed Jul 11, 2022
1 parent 430fb33 commit eb5403b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/split-view/split-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export interface SplitViewOptions {
readonly getSashOrthogonalSize?: () => number;
}

export const enum LayoutPriority {
export enum LayoutPriority {
Normal = "NORMAL",
Low = "LOW",
High = "HIGH",
Expand Down

0 comments on commit eb5403b

Please sign in to comment.