ruoyi-plus-soybean/src/utils/index.ts

30 lines
447 B
TypeScript
Raw Normal View History

2021-09-14 01:31:29 +08:00
export {
setToken,
getToken,
removeToken,
2021-09-14 01:31:29 +08:00
getUserInfo,
getLoginModuleRegExp,
getLoginRedirectUrl,
toLoginRedirectUrl,
toHomeByLocation
} from './auth';
export {
isNumber,
isString,
isBoolean,
isNull,
isUndefined,
isObject,
isArray,
isDate,
isRegExp,
isSet,
2021-08-18 12:02:59 +08:00
isMap,
2021-08-27 12:00:09 +08:00
brightenColor,
darkenColor,
dynamicIconRender
} from './common';
2021-09-14 01:31:29 +08:00
export { setLocal, getLocal, setSession, getSession } from './storage';