mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-12 13:48:35 +02:00
20 lines
354 B
TypeScript
20 lines
354 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { RoleSchema } from './roleSchema';
|
|
|
|
/**
|
|
* A list of roles
|
|
*/
|
|
export interface RolesSchema {
|
|
/** A list of roles */
|
|
roles: RoleSchema[];
|
|
/**
|
|
* The version of the role schema used
|
|
* @minimum 1
|
|
*/
|
|
version: number;
|
|
}
|