mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-11 11:50:54 +08:00
last any type + reference
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
/// <reference path="zip.js.d.ts" />
|
||||
|
||||
// create the blob object storing the data to compress
|
||||
var blob: Blob = new Blob([ "Lorem ipsum dolor sit amet, consectetuer adipiscing elit..." ], {
|
||||
type : "text/plain"
|
||||
@@ -38,6 +40,6 @@ function unzipBlob(blob: Blob, callback: (unzippedBlob: Blob) => void) {
|
||||
}, theErrorHandler);
|
||||
}
|
||||
|
||||
function theErrorHandler(message) {
|
||||
function theErrorHandler(message: any) {
|
||||
console.error(message);
|
||||
}
|
||||
Reference in New Issue
Block a user