import type App from '../App'; import type { AckFn } from './index'; import type { StringIndexed } from './utilities'; export interface ReceiverEvent { body: StringIndexed; retryNum?: number; retryReason?: string; customProperties?: StringIndexed; ack: AckFn; } export interface Receiver { init(app: App): void; start(...args: any[]): Promise; stop(...args: any[]): Promise; } export interface ResponseAck { bind(): AckFn; } //# sourceMappingURL=receiver.d.ts.map