UNPKG

@stencila/jesta

Version:

Stencila plugin for executable documents using JavaScript

64 lines (63 loc) 1.89 kB
#!/usr/bin/env node import { build } from './build'; import { call } from './call'; import { clean } from './clean'; import { cli } from './cli'; import { compile } from './compile'; import { convert } from './convert'; import { decode } from './decode'; import { delete_ } from './delete'; import { dispatch } from './dispatch'; import { downcast } from './downcast'; import { encode } from './encode'; import { enrich } from './enrich'; import { execute } from './execute'; import { export_ } from './export_'; import { funcs } from './funcs'; import { get } from './get'; import { import_ } from './import_'; import { Manifest } from './manifest'; import { pipe } from './pipe'; import { pull } from './pull'; import { read } from './read'; import { select } from './select'; import { serve } from './serve'; import { set } from './set'; import { upcast } from './upcast'; import { validate } from './validate'; import { vars } from './vars'; import { write } from './write'; export declare class Jesta { manifest(): Manifest; read: typeof read; write: typeof write; pull: typeof pull; decode: typeof decode; encode: typeof encode; downcast: typeof downcast; upcast: typeof upcast; validate: typeof validate; enrich: typeof enrich; import: typeof import_; export: typeof export_; convert: typeof convert; select: typeof select; compile: typeof compile; build: typeof build; execute: typeof execute; clean: typeof clean; get: typeof get; set: typeof set; delete: typeof delete_; vars: typeof vars; funcs: typeof funcs; call: typeof call; dispatch: typeof dispatch; pipe: typeof pipe; serve: typeof serve; cli: typeof cli; } export * as logga from '@stencila/logga'; export * as schema from '@stencila/schema'; export * from './types'; export * as http from './util/http';