1
0
mirror of https://github.com/Frooodle/Stirling-PDF.git synced 2025-03-02 00:16:47 +01:00
Stirling-PDF/shared-operations/declarations/Action.d.ts
2023-11-14 17:34:50 +01:00

9 lines
171 B
TypeScript

export interface Action {
protected values: any;
type: string;
actions?: Action[];
}
export interface WaitAction extends Action {
values: { id: number }
}