8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
import type { ActionId } from './ActionId';
|
|
import type { PackageId } from './PackageId';
|
|
export type GetActionInputParams = {
|
|
packageId?: PackageId;
|
|
actionId: ActionId;
|
|
prefill: Record<string, unknown> | null;
|
|
};
|