mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-20 10:36:38 +08:00
41 lines
582 B
TypeScript
41 lines
582 B
TypeScript
export {
|
|
setToken,
|
|
getToken,
|
|
removeToken,
|
|
getUserInfo,
|
|
resetAuthStorage,
|
|
getLoginModuleRegExp,
|
|
getLoginRedirectUrl,
|
|
toLoginRedirectUrl
|
|
} from './auth';
|
|
|
|
export {
|
|
isNumber,
|
|
isString,
|
|
isBoolean,
|
|
isNull,
|
|
isUndefined,
|
|
isObject,
|
|
isArray,
|
|
isDate,
|
|
isRegExp,
|
|
isSet,
|
|
isMap,
|
|
brightenColor,
|
|
darkenColor,
|
|
dynamicIconRender
|
|
} from './common';
|
|
|
|
export {
|
|
setLocal,
|
|
getLocal,
|
|
removeLocal,
|
|
clearLocal,
|
|
setSession,
|
|
getSession,
|
|
removeSession,
|
|
clearSession
|
|
} from './storage';
|
|
|
|
export { getRouteNameMap, setRouterCacheName } from './router';
|