@userfrosting/sprinkle-admin
Version:
Admin Sprinkle for UserFrosting 6
14 lines (13 loc) • 509 B
TypeScript
import { GroupInterface } from '@userfrosting/sprinkle-account/interfaces';
import { SprunjerResponse } from '@userfrosting/sprinkle-core/interfaces';
/**
* API Interfaces - What the API expects and what it returns
*
* This interface is tied to the `GroupsSprunjeAction` API, accessed at the
* GET `/api/groups` endpoint.
*
* This api doesn't have a corresponding Request data interface.
*/
export interface GroupsSprunjerResponse extends Omit<SprunjerResponse, 'rows'> {
rows: GroupInterface[];
}