UNPKG

@ng1005/chrome-extension-common

Version:

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

10 lines (9 loc) 186 B
export type KeyValue = { [key: string]: any; }; export type KeyValueType<T> = { [key: string]: [any: T]; }; export type KeyValueTypeList<T> = { [key: string]: [any: T][]; };