UNPKG

scheunemann-interfaces

Version:
13 lines (12 loc) 344 B
import { EChatGptEndpoints } from "../enums"; import { EGlobalSettingsType } from "../enums/global-settings-type.enum"; export interface IChatGptSettings { active: boolean; createdAt: Date; id: string; apiKey: string; apiUrl: string; type: EGlobalSettingsType; endpoints: EChatGptEndpoints[]; updatedAt: Date; }