@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.
17 lines (16 loc) • 348 B
TypeScript
import { User } from "./user.data.model";
export declare class OrganizationUserGroup {
metadata: {
groupId: string;
clientGroupId: string;
groupName: string;
};
users: {
[userIdHash: string]: boolean;
};
}
export interface UserGroup {
groupId: string;
groupName: string;
users: User[];
}