Interface IdentifierProps

Properties required to create an identifier.

interface IdentifierProps {
    context?: string;
    errorCode?: ErrorCode;
    module?: string;
    name: string;
}

Properties

context?: string

The context part of the identifier.

errorCode?: ErrorCode

The error code part of the identifier.

module?: string

The module part of the identifier.

name: string

The name part of the identifier.