Skip to content

Commit

Permalink
feat: allow to copy evaluate command in a CLI format
Browse files Browse the repository at this point in the history
Signed-off-by: kyryl.perepelytsia <[email protected]>
  • Loading branch information
kyryl-perepelytsia committed Jun 7, 2024
1 parent 004d6d9 commit 65d8a7e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ui/src/types/Cli.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export enum Command {
Evaluate = 'evaluate'
}

export type IOption = { key: string; value: string };

export interface ICommand {
commandName: Command;
arguments?: string[];
options?: IOption[];
}

0 comments on commit 65d8a7e

Please sign in to comment.