/** * 从本地缓存中获取指定 key 的内容 * @param key 缓存中的key值 * @example const value = get('key'); * @see */ export default function get(key: string): Promise;