UNPKG

@userfrosting/sprinkle-admin

Version:
11 lines (9 loc) 385 B
import type { RoleCreateRequest, RoleCreateResponse } from './RoleCreateApi' /** * API Interfaces - What the API expects and what it returns * * This interface is tied to the `RoleEditAction` API, accessed at the * PUT `/api/roles/r/:slug` endpoint. */ export interface RoleEditRequest extends RoleCreateRequest {} export interface RoleEditResponse extends RoleCreateResponse {}