@stencila/jesta
Version:
Stencila plugin for executable documents using JavaScript
10 lines (9 loc) • 379 B
TypeScript
import { Jesta } from '.';
/**
* List functions of the current document.
*
* Returns a map of the name and type signature of the current document's functions.
* See `vars` for an analogous method returning variables and their types.
*/
export declare function funcs(this: Jesta): Promise<Record<string, string>>;
export declare function funcType(_func: () => void): string;