import { TaskScheduleDefinition } from '@backstage/backend-tasks'; export type GerritProjectInfo = { id: string; name: string; parent?: string; state?: string; }; export type GerritProjectQueryResult = Record; export type GerritProviderConfig = { host: string; query: string; id: string; branch?: string; schedule?: TaskScheduleDefinition; };