UNPKG

@bitwild/rockets-auth

Version:

Rockets Auth - Complete authentication and authorization solution for NestJS with JWT, OAuth, OTP, role-based access control, and more

5 lines 408 B
import { RocketsAuthRoleCreatableInterface } from './rockets-auth-role-creatable.interface'; import { RocketsAuthRoleInterface } from './rockets-auth-role.interface'; export interface RocketsAuthRoleUpdatableInterface extends Pick<RocketsAuthRoleInterface, 'id'>, Partial<Pick<RocketsAuthRoleCreatableInterface, 'name' | 'description'>> { } //# sourceMappingURL=rockets-auth-role-updatable.interface.d.ts.map