JS lib: added missed arguments to Blob constructor.
#KT-6654 Fixed
This commit is contained in:
@@ -25,11 +25,16 @@ public class File() : Blob() {
|
||||
}
|
||||
|
||||
native
|
||||
public open class Blob() {
|
||||
public val size : Int = noImpl
|
||||
public val type : String = noImpl
|
||||
public open class Blob(blobParts: Array<Any>? = undefined, options: BlobPropertyBag? = undefined) {
|
||||
public val size: Int = noImpl
|
||||
public val type: String = noImpl
|
||||
//Blob slice(optional long long start,
|
||||
//optional long long end,
|
||||
//optional DOMString contentType);
|
||||
//
|
||||
}
|
||||
|
||||
native
|
||||
public trait BlobPropertyBag {
|
||||
public val type: String
|
||||
}
|
||||
Reference in New Issue
Block a user