8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import type { ActionId } from './ActionId';
|
|
import type { PackageId } from './PackageId';
|
|
export type EffectsRunActionParams = {
|
|
packageId?: PackageId;
|
|
actionId: ActionId;
|
|
input: any;
|
|
};
|