docutils-ts
Version:
Port of the Python Docutils library to TypeScript
12 lines (11 loc) • 426 B
TypeScript
import { Settings } from "./settings.js";
/**
* Default settings.
* This *is* useful because of the complex manner in which docutils-python
* collects and sets defaults, via an imported command argument parser.
*
* Defaults from various components have been extracted and placed into the
* default export which is your basic Object container.
*/
declare const defaultSettings: Settings;
export default defaultSettings;