10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
import type { ActionId } from './ActionId';
|
|
import type { Guid } from './Guid';
|
|
import type { PackageId } from './PackageId';
|
|
export type RunActionParams = {
|
|
packageId: PackageId;
|
|
eventId: Guid | null;
|
|
actionId: ActionId;
|
|
input?: any;
|
|
};
|