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

9 lines
192 B
TypeScript

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