From a90cfc6be92dc40cd0c6e165a94d3e0c914a2ead Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Thu, 26 Sep 2013 14:47:45 -0400 Subject: [PATCH] Fixed the definitions for local and sync storage. --- chrome/chrome.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/chrome.d.ts b/chrome/chrome.d.ts index 5c1e4abb9..3a01db6c1 100644 --- a/chrome/chrome.d.ts +++ b/chrome/chrome.d.ts @@ -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;