@stencila/jesta
Version:
Stencila plugin for executable documents using JavaScript
10 lines (9 loc) • 320 B
TypeScript
import { Node } from '@stencila/schema';
import { Jesta } from '.';
/**
* Call a function within a document.
*
* @param name The name of the function
* @param args Arguments to call the document or function with
*/
export declare function call(this: Jesta, name: string, args: Record<string, Node>): Promise<Node>;