UNPKG

@upv/ushi-shared

Version:

Shared DTOs, types, and utilities for the USHI platform (LMS, Trials, Social, Wallet).

17 lines (16 loc) 294 B
/** * Raw input type for DTO constructors */ export interface IBaseDtoInput { id: string; createdAt: number; updatedAt: number; } /** * Standard output type after serialization */ export interface IBaseDtoOutput { id: string; createdAt: number; updatedAt: number; }