CoolFace
Apppublic

Nymbo/self-hosted-python

sourceHugging Faceupdated 4y agoView on Hugging Face
1likes
module.d.ts28 linesDownload Raw Back to root
1/**2 *3 * @param {undefined | function(): string} stdin4 * @param {undefined | function(string)} stdout5 * @param {undefined | function(string)} stderr6 * @private7 */8export function setStandardStreams(stdin: undefined | (() => string), stdout: undefined | ((arg0: string) => any), stderr: undefined | ((arg0: string) => any)): void;9/**10 * Make the home directory inside the virtual file system,11 * then change the working directory to it.12 *13 * @param {string} path14 * @private15 */16export function setHomeDirectory(path: string): void;17export type Module = any;18/**19 * @typedef {import('emscripten').Module} Module20 */21/**22 * The Emscripten Module.23 *24 * @private25 * @type {Module}26 */27export let Module: any;28