UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

11 lines (10 loc) 300 B
import BaseWriter from '../writer.js'; /** * Simple internal document tree Writer, writes indented pseudo-XML. */ export default class pseudoxml extends BaseWriter { configSection: string; configSectionDependencies: string[]; translate(): void; supports(format: string): boolean; }