UNPKG

@ng1005/chrome-extension-common

Version:

chrome扩展通用库--消息与storage

23 lines (22 loc) 470 B
import { KeyValue } from "../types/KeyValue"; interface IStorageInterface { /** * 当前脚本 */ script: string; keys: KeyValue; /** * 设置数据 * @param name * @param value * @returns */ set(name: string | Object, value?: any): Promise<any>; /** * 获取数据 * @param name * @returns */ get(name: string | Array<string>): Promise<any>; } export default IStorageInterface;