UNPKG

@userfrosting/sprinkle-admin

Version:
14 lines (11 loc) 316 B
import type { ApiResponse } from '@userfrosting/sprinkle-core/interfaces' /** * Interfaces - What the API expects and what it returns */ export interface GroupCreateRequest { slug: string name: string description: string icon: string } export interface GroupCreateResponse extends ApiResponse {}