/** * 添加 * @description * @author nanshen * @creat 2021-09-15 14:22:28 */ import { DictData } from "./get"; type EditParams = Pick; /** * 加入字典缓存数据,无则插入,有则忽略(减少请求) * @param data 字典数据 * @param opts {type 窗口缓存/永久缓存,itemName 缓存全名,优先级高于全局} */ export declare function editDict(data: T, opts?: { type?: "session" | "local"; itemName?: string; }): void; export {};