33 lines
541 B
TypeScript
33 lines
541 B
TypeScript
export { setToken, getToken, removeToken, getUserInfo, resetAuthStorage } from './auth';
|
|
|
|
export {
|
|
isNumber,
|
|
isString,
|
|
isBoolean,
|
|
isNull,
|
|
isUndefined,
|
|
isObject,
|
|
isArray,
|
|
isDate,
|
|
isRegExp,
|
|
isSet,
|
|
isMap,
|
|
brightenColor,
|
|
darkenColor,
|
|
addColorAlpha,
|
|
dynamicIconRender
|
|
} from './common';
|
|
|
|
export {
|
|
setLocal,
|
|
getLocal,
|
|
removeLocal,
|
|
clearLocal,
|
|
setSession,
|
|
getSession,
|
|
removeSession,
|
|
clearSession
|
|
} from './storage';
|
|
|
|
export { getRouteNameMap, setRouterCacheName, getLoginRedirectUrl } from './router';
|