@casual-simulation/aux-common
Version:
Common library for AUX projects
13 lines • 395 B
TypeScript
export interface Action {
/**
* The type of the event.
* This helps determine how the event should be applied to the state.
*/
type: string;
/**
* Whether the action can be structure cloned.
* If true, then the action should not be passed across message ports without special handling.
*/
uncopiable?: boolean;
}
//# sourceMappingURL=Action.d.ts.map