@xmobitea/gn-server
Version:
GearN Server by XmobiTea (Pro)
22 lines (21 loc) • 811 B
TypeScript
import * as mongoDB from "mongodb";
import { MasterAdminMongoObject } from "./MasterAdminMongoObject";
export declare class MasterAdminPlayer extends MasterAdminMongoObject {
private static readonly _userId;
private static readonly _username;
private static readonly _password;
private static readonly _secretKey;
private readonly userId;
private username;
private password;
private secretKey;
constructor(result: mongoDB.WithId<mongoDB.Document>, collection: mongoDB.Collection<mongoDB.Document>);
private setDocumentMasterAdminPlayer;
getUserId(): string;
getUsername(): string;
getPassword(): string;
getSecretKey(): string;
setUsername(username: string): void;
setPassword(password: string): void;
setSecretKey(secretKey: string): void;
}