Files
x-news-ai/src/modules/content-writer/interfaces/content-context.interface.ts
T
2026-05-14 08:42:03 +00:00

16 lines
451 B
TypeScript

// interfaces/content-context.interface.ts
import {Platform} from "../enum/platform.enum";
import {ContentStyle} from "../enum/style.enum";
import {ContentTone} from "../enum/tone.enum";
import {Language} from "../../../common/interfaces/language.prompt.interface";
export interface ContentContext {
topic: string;
platform: Platform;
style: ContentStyle;
tone: ContentTone;
language: Language;
extraInstructions?: string;
}