UNPKG

@tricoteuses/arbre-de-la-loi

Version:

Generate ASTs from the French bills & laws; manipulate & export them to Markdown, etc.

9 lines (8 loc) 276 B
import { Document, Unknown } from "./documents"; import { HastRoot } from "./hast"; interface Options { silent?: boolean; verbose?: boolean; } export declare function documentsFromAssembleeHast(node: HastRoot, options?: Options): Array<Document | Unknown>; export {};