@userfrosting/sprinkle-admin
Version:
Admin Sprinkle for UserFrosting 6
10 lines (9 loc) • 354 B
TypeScript
import { 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 type RoleEditRequest = RoleCreateRequest;
export type RoleEditResponse = RoleCreateResponse;