2023-11-14 01:26:42 +01:00
|
|
|
export interface Action {
|
2023-11-14 17:34:50 +01:00
|
|
|
protected values: any;
|
2023-11-14 01:26:42 +01:00
|
|
|
type: string;
|
|
|
|
actions?: Action[];
|
2023-11-14 17:34:50 +01:00
|
|
|
}
|
|
|
|
|
2023-11-17 20:38:45 +01:00
|
|
|
export interface WaitAction extends Action {
|
|
|
|
values: { id: number }
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ExtractAction extends Action {
|
|
|
|
values: { indecies: string | number[] }
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ImposeAction extends Action {
|
|
|
|
values: { nup: number, format: string }
|
|
|
|
}
|
|
|
|
|
2023-11-14 17:34:50 +01:00
|
|
|
export interface WaitAction extends Action {
|
|
|
|
values: { id: number }
|
2023-11-14 01:26:42 +01:00
|
|
|
}
|