6 lines
254 B
TypeScript
6 lines
254 B
TypeScript
export type DeleteAutoReplyResponse = {
|
|
item: number;
|
|
version: number;
|
|
};
|
|
export declare const deleteAutoReplyFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (id: number) => Promise<DeleteAutoReplyResponse>;
|