Skip to content

Commit 9dc91ac

Browse files
committed
Make storage properties non-null
1 parent 42949e6 commit 9dc91ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

externs/browser/webstorage.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ Storage.prototype.clear = function() {};
6767
function WindowSessionStorage() {}
6868

6969
/**
70-
* @type {Storage}
70+
* @type {!Storage}
7171
*/
7272
WindowSessionStorage.prototype.sessionStorage;
7373

7474
/**
7575
* Window implements WindowSessionStorage
7676
*
77-
* @type {Storage}
77+
* @type {!Storage}
7878
*/
7979
Window.prototype.sessionStorage;
8080

@@ -85,14 +85,14 @@ Window.prototype.sessionStorage;
8585
function WindowLocalStorage() {}
8686

8787
/**
88-
* @type {Storage}
88+
* @type {!Storage}
8989
*/
9090
WindowLocalStorage.prototype.localStorage;
9191

9292
/**
9393
* Window implements WindowLocalStorage
9494
*
95-
* @type {Storage}
95+
* @type {!Storage}
9696
*/
9797
Window.prototype.localStorage;
9898

0 commit comments

Comments
 (0)