Files
sam-sales/kodata/ref/types.ts

22 lines
335 B
TypeScript
Raw Permalink Normal View History

export interface Question {
id: string;
text: string;
category: string;
priority: 'high' | 'medium' | 'low';
}
export interface Section {
id: string;
title: string;
subtitle: string;
icon: string;
questions: Question[];
}
export interface MeetingOverview {
date: string;
target: string;
purpose: string[];
}