argos/dmp-frontend/src/app/core/model/dashboard/search-bar-item.ts

8 lines
169 B
TypeScript

import { SearchBarType } from "../../../ui/misc/navigation/navigation.component";
export interface SearchBarItem {
id: string;
label: string;
type: SearchBarType;
}