Interface ProposalsResponse

interface ProposalsResponse {
    pagination: {
        next_key: string;
        total: number;
    };
    proposals: Proposal[];
}

Properties

pagination: {
    next_key: string;
    total: number;
}
proposals: Proposal[]