This commit is contained in:
qq
2026-04-21 22:34:39 +08:00
commit c28429b589
718 changed files with 48804 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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 {};