* feat(ui): add `input group` base component * feat(history): add history viewer and rewind * test: update selector snapshot * test: add PW base page * style: apply TS style fixes * chore(history): request history wiki * chore(history): remove unwanted symbol * chore: fix type * style: apply TS style fixes
13 lines
208 B
TypeScript
13 lines
208 B
TypeScript
export interface ParameterContract {
|
|
id?: number;
|
|
type: ParameterType;
|
|
key: string;
|
|
value: string;
|
|
enabled: boolean;
|
|
}
|
|
|
|
export enum ParameterType {
|
|
Text = 'text',
|
|
File = 'file',
|
|
}
|