Interface iGetGroupsSuccessResponse<T>

interface iGetGroupsSuccessResponse<T> {
    docs: iGroupDoc<T>[];
    pagination: {
        bookmark: string;
        hasMore: boolean;
    };
}

Type Parameters

Implemented by

Properties

Properties

docs: iGroupDoc<T>[]
pagination: {
    bookmark: string;
    hasMore: boolean;
}