Skip to content

Commit

Permalink
Switching export enum to export const enum (elastic#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
opauloh authored Feb 23, 2022
1 parent 39bdfd9 commit c12b985
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
* 2.0.
*/

export enum EventKind {
export const enum EventKind {
event = 'event',
signal = 'signal',
}

export enum EventAction {
export const enum EventAction {
fork = 'fork',
exec = 'exec',
end = 'end',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface StylesDeps {
hasAlerts: boolean;
}

export enum ButtonType {
export const enum ButtonType {
children = 'children',
alerts = 'alerts',
output = 'output',
Expand Down

0 comments on commit c12b985

Please sign in to comment.