export interface Storage { key: string; value: string; } /** * 将数据存储在本地缓存中指定的 key 中。会覆盖掉原来该 key 对应的内容。 * * @param option */ declare function setStorage(option: Storage): void; export default setStorage;