CrazySquirrel/CSDebug

View on GitHub
Interfaces/IError.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * The IError interface
 */
interface IError {
    /**
     * Error name
     */
    name: string;
    /**
     * Error message
     */
    message: string;
    /**
     * Error stack call trace
     */
    stack: string;
    /**
     * Error constructor
     * @param message
     */
    new (message?: string): IError;
}
export default IError;