UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

12 lines (11 loc) 262 B
import { AppRole } from "../../../domain/user"; import { UserData } from "./user.data"; export declare class RoleData { id: string; name: AppRole; label2: string; label: string; createdAt: Date; updatedAt: Date; users?: UserData[]; }