Merge pull request #1086 from greysonp/master

Fixed the definitions for local and sync storage.
This commit is contained in:
basarat
2013-09-27 20:25:36 -07:00
+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;