RocketChat/Rocket.Chat

View on GitHub
packages/rest-typings/src/helpers/WithItemCount.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type WithItemCount<T = Record<string, unknown>> = T & {
    count: { total: number }[];
};