Files
botAffilate/serverNode/node_modules/zca-js/dist/apis/fetchAccountInfo.d.ts
T

6 lines
275 B
TypeScript

import type { User } from "../models/index.js";
export type FetchAccountInfoResponse = {
profile: User;
};
export declare const fetchAccountInfoFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => () => Promise<FetchAccountInfoResponse>;