UNPKG

evolution-api-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

14 lines (11 loc) 296 B
import { ChatId } from '../../../types/tags.js'; interface ArchiveRequest { number: ChatId; archive: boolean; } interface ArchiveResponse { status: string; message: string; } type ArchiveOptions = ArchiveRequest; export type { ArchiveOptions, ArchiveRequest, ArchiveResponse };