Files
energy_dist/dist/app/api/vo/user.vo.d.ts
T
2026-04-21 22:34:39 +08:00

19 lines
489 B
TypeScript

import { UserModel } from 'src/model/user.model';
declare const UserVo_base: import("@nestjs/common").Type<Omit<UserModel, "password" | "tradePassword">>;
export declare class UserVo extends UserVo_base {
hasTradePassword?: boolean;
}
export declare class ImVo {
prefix: string;
uid: string;
tolen: string;
sign: string;
appId: number;
isAuth: boolean;
isBuy: boolean;
username: string;
avatar: string;
enabledCreateGroup: boolean;
}
export {};