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