UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

12 lines (11 loc) 453 B
import { ContextArray, ParseMethodReturnType, RegexpResult, StateInterface } from '../../../types.js'; import SpecializedBody from './specializedBody.js'; /** * Second and subsequent lines of a line_block. */ declare class LineBlock extends SpecializedBody { blank(): void; /** New line of line block. */ line_block(match: RegexpResult, context: ContextArray, nextState: StateInterface): ParseMethodReturnType; } export default LineBlock;