KC's Workspace
    Preparing search index...
    interface BaseMessage<Code extends string, Args = Record<string, string>> {
        args: Args;
        code: Code;
        path: string[];
        type: MessageType;
    }

    Type Parameters

    • Code extends string
    • Args = Record<string, string>
    Index
    args: Args

    Arguments used to be the final message

    code: Code

    The message code to narrow the message type

    path: string[]

    The path to the key in the package.json which triggered this message

    The type of message for sorting