@cashfarm/tractor
Version:
A Hapi server with superpowers
15 lines (14 loc) • 328 B
TypeScript
/**
* Acknowledge response
*
* This response should be used for long runing commands where the result
* will be eventually available at `resultUrl`
*
* @export
* @class AckResponse
*/
export declare class AckResponse {
message: string;
resultUrl?: string;
constructor(message: string, resultUrl?: string);
}