Interface ResponseMessage

This interface represents the response the client receives from the server

interface ResponseMessage {
    code: number;
    data: any;
    message: string;
}

Properties

Properties

code: number
data: any
message: string