UNPKG

scheunemann-interfaces

Version:
8 lines (7 loc) 273 B
import { EChatGptRole } from '../enums/role.enum'; import { IChatGptMessage } from '../interfaces'; export declare class ChatGptMessageEntity implements IChatGptMessage { role: EChatGptRole; content: string; constructor(data?: Partial<ChatGptMessageEntity>); }