UNPKG

@prefecthq/prefect-ui-library

Version:

This library is the Vue and Typescript component library for [Prefect 2](https://github.com/PrefectHQ/prefect) and [Prefect Cloud 2](https://www.prefect.io/cloud/). _The components and utilities in this project are not meant to be used independently_.

14 lines (13 loc) 463 B
import type { ScheduleResponse } from '../../models/api/ScheduleResponse'; import type { SchemaValuesV2 } from '../../schemas'; import type { DateString } from '../../types/dates'; export type DeploymentScheduleResponse = { id: string; created: DateString; updated: DateString; slug: string | null; active: boolean; schedule: ScheduleResponse; job_variables?: Record<string, unknown> | null; parameters?: SchemaValuesV2 | null; };