docutils-ts
Version:
Port of the Python Docutils library to TypeScript
8 lines (7 loc) • 327 B
TypeScript
import FieldList from './fieldList.js';
import { NodeInterface } from "../../../types.js";
declare class ExtensionOptions extends FieldList {
/** Override `Body.parse_field_body` for simpler parsing. */
parse_field_body(indented: string[], offset: number, node: NodeInterface): void;
}
export default ExtensionOptions;