UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

11 lines (10 loc) 266 B
class IndentationError extends Error { constructor(message) { super(); if (Error.captureStackTrace) { Error.captureStackTrace(this, IndentationError); } this.message = message; } } export default IndentationError;