UNPKG

pl4y-data-library

Version:

This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.

12 lines (10 loc) 214 B
import { Role } from "../../enums/roles.enum"; export interface Token { _id?: string; id?: string; user_id: string; role: Role; tenant_id?: string; token?: string; expired_at?: Date; }