ai-bot/app/_ui/search/config.ts

18 lines
324 B
TypeScript

export type SearchConfigItem = {
name: string;
label: string;
type: string;
value: string;
options?: string[];
}
export type SearchConfig = [
{
name: 'searchType';
label: 'Search Type';
type: 'select';
value: 'global';
options: ['global', 'local'];
},
];