File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -11411,8 +11411,8 @@ declare var StereoPannerNode: {
11411
11411
interface Storage {
11412
11412
readonly length: number;
11413
11413
clear(): void;
11414
- getItem(key: string): string;
11415
- key(index: number): string;
11414
+ getItem(key: string): string | null ;
11415
+ key(index: number): string | null ;
11416
11416
removeItem(key: string): void;
11417
11417
setItem(key: string, data: string): void;
11418
11418
[key: string]: any;
Original file line number Diff line number Diff line change 580
580
"kind" : " method" ,
581
581
"interface" : " Storage" ,
582
582
"name" : " getItem" ,
583
- "signatures" : [" getItem(key: string): string" ]
583
+ "signatures" : [" getItem(key: string): string | null" ]
584
+ },
585
+ {
586
+ "kind" : " method" ,
587
+ "interface" : " Storage" ,
588
+ "name" : " key" ,
589
+ "signatures" : [" key(index: number): string | null" ]
584
590
},
585
591
{
586
592
"kind" : " method" ,
You can’t perform that action at this time.
0 commit comments