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.

16 lines (15 loc) 306 B
import { User } from "./user"; export declare enum AppRole { ADMIN = "ADMIN", USER = "USER", MODERATOR = "MODERATOR", NEWS_WRITER = "NEWS_WRITER" } export interface Role { id: string; name: AppRole; label: string; createdAt: Date; updatedAt: Date; users?: User[]; }