evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
17 lines (14 loc) • 387 B
TypeScript
import { Jid } from '../../../types/tags.js';
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 };