Merge pull request #26101 from Microsoft/Fix26083-2

Port generated lib files
This commit is contained in:
Mohamed Hegazy 2018-07-31 13:01:04 -07:00 committed by GitHub
commit ab5f04721d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14332,7 +14332,8 @@ interface Storage {
/**
* storage[key] = value
*/
setItem(key: string, value: string): void;
setItem(key: string, value: string): void;
[name: string]: any;
}
declare var Storage: {