Interface ConnectedAction

interface ConnectedAction {
    data: {
        comments: Comment[];
        config: Config;
        services: Service[];
        setList: SetListAPIResponse;
        waitingList: OrderItem[];
    };
    type: "connected";
}

Properties

Properties

data: {
    comments: Comment[];
    config: Config;
    services: Service[];
    setList: SetListAPIResponse;
    waitingList: OrderItem[];
}

Type declaration

type: "connected"