docutils-ts
Version:
Port of the Python Docutils library to TypeScript
11 lines (10 loc) • 441 B
TypeScript
import SpecializedBody from './specializedBody.js';
import { RegexpResult, ContextArray, StateInterface, ParseMethodReturnType } from '../../../types.js';
/**
* Second and subsequent option_list option_list_items.
*/
declare class OptionList extends SpecializedBody {
/** Option list item. */
option_marker(match: RegexpResult, context: ContextArray, nextState: StateInterface): ParseMethodReturnType;
}
export default OptionList;