UNPKG

@specs-feup/lara

Version:

A js port of the popular framework for building source-to-source compilers

27 lines 770 B
/** * Utility methods related to execution of scripts in a LARA environment. * * @deprecated Nothing uses this */ export default class Script { #private; /** * Sets the output of the script, which will be written to disk when using the flag -r * * @param value - the output of this script */ static setOutput(value: Record<string, any>): void; /** * Reads the value set by Script.setOutput() * * @returns The value set by Script.setOutput() */ static getOutput(): Record<string, any>; /** * Returns the input values passed using the flag -av * * @returns An object with the input arguments passed by command line */ static getInput(): any; } //# sourceMappingURL=Script.d.ts.map