UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

5 lines (4 loc) 184 B
import { Settings } from "../settings.js"; import { Document } from '../types.js'; declare function read(input: string, settings: Settings): Document | undefined; export default read;