UNPKG

@userfrosting/sprinkle-admin

Version:
12 lines (11 loc) 301 B
import { 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 type GroupCreateResponse = ApiResponse;