UNPKG

tcl-js

Version:

tcl-js is a tcl intepreter written completely in Typescript. It is meant to replicate the tcl-sh interpreter as closely as possible.

13 lines (12 loc) 235 B
export class TclError extends Error { /** * Creates an instance of TclError. * * @param {...any} args * @memberof TclError */ public constructor(...args: any) { super(...args); this.name = "TclError"; } }