openpaul
    Preparing search index...

    Interface CommandResult

    Command Result - Result of executing a command

    interface CommandResult {
        data: unknown;
        message: string;
        nextAction: string | null;
        success: boolean;
    }
    Index

    Properties

    data: unknown
    message: string
    nextAction: string | null
    success: boolean