@stencila/jesta
Version:
Stencila plugin for executable documents using JavaScript
5 lines (4 loc) • 303 B
TypeScript
import { CodeChunk, Node } from '@stencila/schema';
import { Jesta } from '.';
export declare function compile(this: Jesta, node: Node, force: boolean): Promise<Node>;
export declare const compileCode: (code: string) => Pick<CodeChunk, 'alters' | 'assigns' | 'declares' | 'imports' | 'reads' | 'uses'>;