import { utils } from "@/env"; export const XHSNetworkHook = { __ajaxHooker: null as null | ReturnType, get ajaxHooker(): ReturnType { if (this.__ajaxHooker == null) { this.__ajaxHooker = utils.ajaxHooker(); } return this.__ajaxHooker; }, };