evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
17 lines (14 loc) • 388 B
text/typescript
import { Jid } from '../../../types/tags.mjs';
interface CheckResponseRaw {
exists: boolean;
jid: string;
number: string;
}
interface CheckResponseItem {
exists: boolean;
jid: Jid;
number: string;
}
type CheckOptions = string | string[];
type CheckResponse = CheckResponseItem[];
export type { CheckOptions, CheckResponse, CheckResponseItem, CheckResponseRaw };