export interface PQOnShowResult { /**参数:可以是通过链接进入的参数 */ query: Record; } export interface PQLiftCycle { onShow?: (result: PQOnShowResult) => void; onHide?: () => void; } export interface IPQPlatform { /** * 注册生命周期 * @param liftCycle */ onLifeCycle(liftCycle: PQLiftCycle): void; /** * 取消生命周期 * @param liftCycle */ offLifeCycle(liftCycle: PQLiftCycle): void; /** * 退出游戏 */ exit(): void; } //# sourceMappingURL=IPQPlatform.d.ts.map