UNPKG

actor-kit

Version:

Actor Kit is a library for running state machines in Cloudflare Workers, leveraging XState for robust state management. It provides a framework for managing the logic, lifecycle, persistence, synchronization, and access control of actors in a distributed

9 lines 328 B
import { CallerType } from "./types"; export declare const createAccessToken: ({ signingKey, actorId, actorType, callerId, callerType, }: { signingKey: string; actorId: string; actorType: string; callerId: string; callerType: CallerType; }) => Promise<string>; //# sourceMappingURL=createAccessToken.d.ts.map