Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /**
* Output from every generator function.
* Contains the generated code and any side effects.
*/
import TGeneratorEffect from "./TGeneratorEffect";
interface IGeneratorOutput {
/** The generated C code */
readonly code: string;
/** Side effects to be processed by the orchestrator */
readonly effects: readonly TGeneratorEffect[];
}
export default IGeneratorOutput;
|