import type { Role } from './role.entity'; /** * Fields required to create a Role. */ export type CreateRoleDto = Omit; /** * Fields allowed when updating a Role. */ export type UpdateRoleDto = Partial; /** * Full Role shape returned by the API. */ export type RoleResponse = Role; //# sourceMappingURL=role.dto.d.ts.map