UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

7 lines (6 loc) 341 B
import SpecializedBody from './specializedBody.js'; import { RegexpResult, ContextArray, StateInterface, ParseMethodReturnType } from '../../../types.js'; declare class BulletList extends SpecializedBody { bullet(match: RegexpResult, context: ContextArray, nextState: StateInterface): ParseMethodReturnType; } export default BulletList;