evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
18 lines (16 loc) • 382 B
text/typescript
interface DeleteRequest {
instanceName: string;
}
interface DeleteInstanceInfo {
instanceName: string;
status: string;
}
interface DeleteResponse {
status: "SUCCESS" | "ERROR";
error: boolean;
response: {
message: string;
};
}
type DeleteOptions = DeleteRequest;
export type { DeleteInstanceInfo, DeleteOptions, DeleteRequest, DeleteResponse };