UNPKG

@datastax/langflow-client

Version:
10 lines (8 loc) 200 B
export class Log { timestamp: Date; message: string; constructor(timestamp: string, message: string) { this.timestamp = new Date(parseInt(timestamp, 10)); this.message = message; } }