版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

7 строки
532 B

  1. import type { Directives } from '../doc/directives.js';
  2. import { Document } from '../doc/Document.js';
  3. import type { DocumentOptions, ParseOptions, SchemaOptions } from '../options.js';
  4. import type * as CST from '../parse/cst.js';
  5. import type { ComposeErrorHandler } from './composer.js';
  6. export declare function composeDoc(options: ParseOptions & DocumentOptions & SchemaOptions, directives: Directives, { offset, start, value, end }: CST.Document, onError: ComposeErrorHandler): Document.Parsed<import("../index.js").ParsedNode>;