@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support
18 lines (17 loc) • 493 B
TypeScript
import { Gender } from "../models/Enum.js";
export type FindUserResponse = {
avatar: string;
cover: string;
status: string;
gender: Gender;
dob: number;
sdob: string;
globalId: string;
bizPkg: {
pkgId: number;
};
uid: string;
zalo_name: string;
display_name: string;
};
export declare const findUserFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (phoneNumber: string) => Promise<FindUserResponse>;