/** * The base error class. Used to represent user input errors as opposed to logic failures. */ export default class BaseError { /** * The error message. */ message: string; constructor(message: string); toString(): string; }