UNPKG

@restnfeel/agentc-starter-kit

Version:

한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템

32 lines 991 B
export interface SuggestedQuestion { id: string; text: string; category: string; priority: number; context?: string[]; analytics?: { clickCount: number; lastUsed: Date; }; } export interface QuestionCategory { id: string; name: string; description: string; questions: SuggestedQuestion[]; } export declare const DEFAULT_QUESTIONS: SuggestedQuestion[]; export declare const QUESTION_CATEGORIES: QuestionCategory[]; export declare const CONTEXTUAL_QUESTIONS: Record<string, SuggestedQuestion[]>; export declare class QuestionAnalytics { private static readonly STORAGE_KEY; static trackQuestionClick(questionId: string): void; static getAnalytics(): Record<string, { clickCount: number; lastUsed: Date; questionId: string; }>; static getMostPopularQuestions(limit?: number): SuggestedQuestion[]; static clearAnalytics(): void; } //# sourceMappingURL=suggested-questions-config.d.ts.map