UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

8 lines (7 loc) 387 B
import SpecializedText from './specializedText.js'; import { RegexpResult, ContextArray, StateInterface, ParseMethodReturnType } from '../../../types.js'; declare class Definition extends SpecializedText { eof(context: ContextArray): ContextArray; indent(match: RegexpResult, context: ContextArray, nextState: StateInterface): ParseMethodReturnType; } export default Definition;