interface SyntaxErrorConstructor {
    new SyntaxErrorConstructornew (message?: string): SyntaxError;
    new SyntaxErrorConstructornew (message?: string): Error;
    prototype: SyntaxError;
    (message?: string): SyntaxError;
    (message?: string): Error;
}

Hierarchy-Diagram

UML class diagram of SyntaxErrorConstructor
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

  • Parameters

    • Optional message: string

    Returns SyntaxError

  • Parameters

    • Optional message: string

    Returns Error

Constructors

Properties

Constructors

  • Parameters

    • Optional message: string

    Returns SyntaxError

  • Parameters

    • Optional message: string

    Returns Error

Properties

prototype: SyntaxError