Files
sfxkeeb/frontend/bindings/sfxkeeb/fileservice.ts
T
end 57b35ffd08 chore(wails): wire embedded assets and build config
Use BundledAssetFileServer so production builds serve the Wails runtime
alongside the embedded frontend dist (including kbsim samples copied at
build time). Verified via wails3 task build.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 22:26:14 -07:00

32 lines
1.0 KiB
TypeScript

// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
/**
* FileService exposes native file dialogs and streams the current video.
* @module
*/
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore: Unused imports
import { Call as $Call, CancellablePromise as $CancellablePromise } from "@wailsio/runtime";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore: Unused imports
import * as $models from "./models.js";
export function OpenProject(): $CancellablePromise<string> {
return $Call.ByID(2194602340);
}
export function OpenVideo(): $CancellablePromise<$models.VideoResult> {
return $Call.ByID(392322154);
}
export function SaveAudio(dataBase64: string, defaultName: string): $CancellablePromise<void> {
return $Call.ByID(1785178400, dataBase64, defaultName);
}
export function SaveProject(content: string, defaultName: string): $CancellablePromise<void> {
return $Call.ByID(2685219959, content, defaultName);
}