mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
export interface Action {
|
|
protected values: any;
|
|
type: string;
|
|
actions?: Action[];
|
|
}
|
|
|
|
export interface WaitAction extends Action {
|
|
values: { id: number }
|
|
} |