/** * 适老化lib * 封装各端在开启、关闭和状态上的差异 */ declare global { interface Window { setCookiemode: any; delCookiemode: any; globalGovMessage: any; } } declare function initPC(): boolean; declare function initH5(): boolean; declare const _default: { initPC: typeof initPC; initH5: typeof initH5; enterElderly: () => void; exitElderly: () => void; }; export default _default;