JS lib: added missed arguments to Blob constructor.

#KT-6654 Fixed
This commit is contained in:
nbilyk
2015-02-15 14:05:39 -08:00
committed by Zalim Bashorov
parent 6afe64dd14
commit 121ada0cab
+8 -3
View File
@@ -25,11 +25,16 @@ public class File() : Blob() {
} }
native native
public open class Blob() { public open class Blob(blobParts: Array<Any>? = undefined, options: BlobPropertyBag? = undefined) {
public val size : Int = noImpl public val size: Int = noImpl
public val type : String = noImpl public val type: String = noImpl
//Blob slice(optional long long start, //Blob slice(optional long long start,
//optional long long end, //optional long long end,
//optional DOMString contentType); //optional DOMString contentType);
// //
} }
native
public trait BlobPropertyBag {
public val type: String
}