16 lines
451 B
TypeScript
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;
|
|
}
|