import { PQPlatform } from "../base/PQPlatform.js"; import { PQPlatformType } from "../entity/PQConst.js"; import { PQSystem } from "../entity/PQSystem.js"; import { PQUser } from "../entity/PQUser.js"; export declare class PQPlatformManager { private _platform; private _platformType; private _user; private _system; constructor(); /** * 设置平台类型 * @param platformType */ set plarmType(platformType: PQPlatformType); /** * 获取平台类型 */ get plarmType(): PQPlatformType; get platform(): PQPlatform | null; set platform(platform: PQPlatform | null); set user(user: PQUser | null); get user(): PQUser | null; set system(system: PQSystem | null); get system(): PQSystem | null; } //# sourceMappingURL=PQPlatformManager.d.ts.map