UNPKG

439 BTypeScriptView Raw
1import { BaseError } from 'make-error';
2export interface TypeScriptCompileErrorProps {
3 message: string;
4}
5export default class TypeScriptCompileError extends BaseError {
6 name: string;
7 options: {};
8 static fromError: (error: TypeScriptCompileErrorProps) => TypeScriptCompileError;
9 constructor(message: string, options: {});
10 toObject(): {
11 message: string;
12 name: string;
13 stack: string;
14 };
15}