/** * Created by ArvinChen9539 on 2019/2/27. * 存储配置项 */ declare const options: { authTimeout: number; }; /** * 设置配置项 * @param config */ declare const setConfig: (config: typeof options) => void; declare const getConfig: () => { authTimeout: number; }; export { getConfig, setConfig };