Skip to content

Commit

Permalink
add ts for type model
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Mar 8, 2024
1 parent 4e93270 commit 8d617bc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion shared-data/command/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ export * from './timing'
// NOTE: these key/value pairs will only be present on commands at analysis/run time
// they pertain only to the actual execution status of a command on hardware, as opposed to
// the command's identity and parameters which can be known prior to runtime

export interface CommandNote {
noteKind: 'warning' | 'information' | string
shortMessage: string
longMessage: string
source: string
}
export type CommandStatus = 'queued' | 'running' | 'succeeded' | 'failed'
export interface CommonCommandRunTimeInfo {
key?: string
Expand Down

0 comments on commit 8d617bc

Please sign in to comment.