silverbullet/plug-api/mq.ts

7 lines
91 B
TypeScript
Raw Normal View History

2023-08-11 00:32:41 +08:00
export type Message = {
id: string;
queue: string;
body: any;
retries?: number;
};