Fixed the definitions for local and sync storage.

This commit is contained in:
Greyson Parrelli
2013-09-26 14:47:45 -04:00
parent c2df10e5f1
commit a90cfc6be9
+2 -2
View File
@@ -1534,11 +1534,11 @@ declare module chrome.storage {
oldValue?: any;
}
interface Local {
interface Local extends StorageArea {
QUOTA_BYTES: number;
}
interface Sync {
interface Sync extends StorageArea {
MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE: number;
QUOTA_BYTES: number;
QUOTA_BYTES_PER_ITEM: number;