Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
refactor: sort stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Jun 13, 2022
1 parent b8d29b9 commit a76e721
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions api-editor/gui/src/features/ui/uiSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ type UserAction =
| BoundaryUserAction
| CalledAfterUserAction
| ConstantUserAction
| DescriptionUserAction
| GroupUserAction
| EnumUserAction
| RenameUserAction
| OptionalUserAction
| DescriptionUserAction;
| OptionalUserAction;

const NoUserAction = {
type: 'none',
Expand Down Expand Up @@ -57,6 +57,11 @@ interface ConstantUserAction {
readonly target: string;
}

interface DescriptionUserAction {
readonly type: 'description';
readonly target: string;
}

interface EnumUserAction {
readonly type: 'enum';
readonly target: string;
Expand All @@ -78,11 +83,6 @@ interface RenameUserAction {
readonly target: string;
}

interface DescriptionUserAction {
readonly type: 'description';
readonly target: string;
}

export enum HeatMapMode {
None,
Usages,
Expand Down

0 comments on commit a76e721

Please sign in to comment.