UNPKG

scheunemann-interfaces

Version:
15 lines (14 loc) 518 B
import { EGlobalSettingsType } from '../enums/global-settings-type.enum'; import { EChatGptEndpoints } from '../enums/chat-gpt-endpoints.enum'; import { IChatGptSettings } from '../interfaces/i-gpt-settings'; export declare class GptSettingsEntity implements IChatGptSettings { active: boolean; createdAt: Date; id: string; apiKey: string; apiUrl: string; type: EGlobalSettingsType; updatedAt: Date; endpoints: EChatGptEndpoints[]; constructor(data?: Partial<GptSettingsEntity>); }