UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

15 lines (14 loc) 293 B
import { User } from "./user.entity"; export declare class SenseloafLog { id: number; userId: number; type: string; endpoint: string; success: boolean; request: any; response: any; errorMessage: string; scope: string; createdAt: Date; user: User; }