@ayonli/jsext
Version:
A JavaScript extension package for building strong and modern applications.
40 lines (38 loc) • 1.28 kB
JavaScript
async function alert(message, options = {}) {
throw new Error("Unsupported runtime");
}
async function confirm(message, options = {}) {
throw new Error("Unsupported runtime");
}
async function prompt(message, options = "") {
throw new Error("Unsupported runtime");
}
async function progress(message, fn, onAbort = undefined) {
throw new Error("Unsupported runtime");
}
async function pickFile(options = {}) {
throw new Error("Unsupported runtime");
}
async function pickFiles(options = {}) {
throw new Error("Unsupported runtime");
}
async function pickDirectory(options = {}) {
throw new Error("Unsupported runtime");
}
async function openFile(options = {}) {
throw new Error("Unsupported runtime");
}
async function openFiles(options = {}) {
throw new Error("Unsupported runtime");
}
async function openDirectory(options = {}) {
throw new Error("Unsupported runtime");
}
async function saveFile(file, options = {}) {
throw new Error("Unsupported runtime");
}
async function downloadFile(url, options = {}) {
throw new Error("Unsupported runtime");
}
export { alert, confirm, downloadFile, openDirectory, openFile, openFiles, pickDirectory, pickFile, pickFiles, progress, prompt, saveFile };
//# sourceMappingURL=dialog.js.map