RocketChat/Rocket.Chat

View on GitHub
apps/meteor/ee/app/livechat-enterprise/server/api/lib/definition.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IPagination {
    offset: number;
    count: number;
    sort: Record<string, any>;
}

export interface IPaginatedResponse {
    count: number;
    offset: number;
    total: number;
}