@veltdev/sdk
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
20 lines (19 loc) • 390 B
TypeScript
import { Permission } from "./permission.data.model";
export declare class UserRole {
/**
* Unique id of the user role
*/
id: string;
/**
* Name of the user role
*/
name: string;
/**
* Description of the user role
*/
description: string;
/**
* Permissions associated with the user role
*/
permissions: Permission[];
}