mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-01-28 00:22:33 +01:00
21 lines
435 B
TypeScript
21 lines
435 B
TypeScript
export interface Action {
|
|
protected values: any;
|
|
type: string;
|
|
actions?: Action[];
|
|
}
|
|
|
|
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 }
|
|
}
|
|
|
|
export interface WaitAction extends Action {
|
|
values: { id: number }
|
|
} |