@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
13 lines (12 loc) • 353 B
TypeScript
export type WhatsAppOutboundTargetResolution = {
ok: true;
to: string;
} | {
ok: false;
error: Error;
};
export declare function resolveWhatsAppOutboundTarget(params: {
to: string | null | undefined;
allowFrom: Array<string | number> | null | undefined;
mode: string | null | undefined;
}): WhatsAppOutboundTargetResolution;