@efesto-cloud/usecase
v0.0.2
Published
Usecase type for efesto-cloud
Readme
Use Case
How to extend the execution context
import "@efesto-cloud/usecase";
declare module "@efesto-cloud/usecase" {
export interface IExecutionContext {
actor: { type: "STAFF", staff_id: string } | { type: "USER", user_id: string };
timestamp: Date;
uuid: string;
}
}