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

34 lines
579 B
TypeScript
Raw Normal View History

export { setToken, getToken, removeToken, getUserInfo, resetAuthStorage, getLoginModuleRegExp } from './auth';
2021-09-14 01:31:29 +08:00
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,
shallowColor,
darkenColor,
addColorAlpha,
dynamicIconRender
} from './common';
2021-09-14 01:31:29 +08:00
export {
setLocal,
getLocal,
removeLocal,
clearLocal,
setSession,
getSession,
removeSession,
clearSession
} from './storage';
export { getRouteNameMap, setRouterCacheName, getLoginRedirectUrl } from './router';