All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xpenatan.gdx.backends.teavm.dom.DataTransferWrapper Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.xpenatan.gdx.backends.teavm.dom;

import org.teavm.jso.JSMethod;
import org.teavm.jso.JSObject;
import org.teavm.jso.JSProperty;

public interface DataTransferWrapper extends JSObject {

    @JSProperty
    DataTransferItemArrayWrapper getItems();

    @JSProperty
    FileListWrapper getFiles();

    @JSMethod
    String getData(String format);

    @JSMethod
    void setData(String format, String data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy