Make enum not uppercase

This commit is contained in:
Logan Ramos
2022-02-22 10:20:28 -05:00
parent 136e0ba8ed
commit 198682cfac
3 changed files with 9 additions and 9 deletions

View File

@@ -626,10 +626,10 @@ export interface IEditorTabGroupDto {
}
export enum TabKind {
SINGULAR = 0,
DIFF = 1,
SIDEBYSIDE = 2,
OTHER = 3
Singular = 0,
Diff = 1,
SidebySide = 2,
Other = 3
}
export interface IEditorTabDto {