mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-24 20:21:53 +08:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
declare namespace chrome.storage {
|
|
interface StorageChange {
|
|
oldValue?: any;
|
|
newValue?: any;
|
|
}
|
|
|
|
type StorageChanges = {
|
|
[key: string]: StorageChange;
|
|
};
|
|
}
|