UNPKG

@yingyeothon/actor-system

Version:
5 lines (4 loc) 154 B
export default interface QueueSingleConsumer { pop: <T>(actorId: string) => Promise<T | null>; peek: <T>(actorId: string) => Promise<T | null>; }