|
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'];
|
|
},
|
|
|
|
]; |