Interface StorageCommandResponse

interface StorageCommandResponse {
    data?: Record<string, any>;
    message?: string;
    success: boolean;
}

Properties

data?: Record<string, any>

Data object with the key/value pairs from the storage item in the given command

message?: string

Success message from the response

success: boolean

Boolean indicating if the command was successful

Generated using TypeDoc