UNPKG

nsn-util

Version:

NSN工具辅助组件

8 lines (7 loc) 252 B
/** 缓存token */ declare const set: (token: string) => void; /** 获取token缓存 */ declare const get: () => string | undefined; /** token 是否过期 */ declare const isExpired: (accessToken?: string) => boolean; export { set, get, isExpired, };