import { SchemaProperty } from '../types'; export type DefaultBaseJobConfiguration = { jobConfiguration: Record; variables: SchemaProperty; }; export type WorkerCollectionItem = { defaultBaseJobConfiguration?: Record; description?: string; displayName?: string; documentationUrl?: string; installCommand?: string; logoUrl?: string; type?: string; isBeta?: boolean; isPushPool?: boolean; isMexPool?: boolean; }; export type WorkerColection = Record; export type PrefectWorkerCollection = { prefect: { workers: WorkerColection; }; };