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_.

15 lines (14 loc) 1.4 kB
import { DeploymentFlowRunCreate, DeploymentFlowRunRequest, DeploymentUpdateRequest, DeploymentUpdateV2, DeploymentVersionInfoResponse, DeploymentVersionResponse } from '../models'; import { DeploymentCreateRequest } from '../models/api/DeploymentCreateRequest'; import { DeploymentResponse } from '../models/api/DeploymentResponse'; import { Deployment } from '../models/Deployment'; import { DeploymentCreate } from '../models/DeploymentCreate'; import { DeploymentVersion } from '../models/DeploymentVersion'; import { DeploymentVersionInfo } from '../models/DeploymentVersionInfo'; import { MapFunction } from '../services/Mapper'; export declare const mapDeploymentResponseToDeployment: MapFunction<DeploymentResponse, Deployment>; export declare const mapDeploymentUpdateV2ToDeploymentUpdateRequest: MapFunction<DeploymentUpdateV2, DeploymentUpdateRequest>; export declare const mapDeploymentFlowRunCreateV2ToDeploymentFlowRunRequest: MapFunction<DeploymentFlowRunCreate, DeploymentFlowRunRequest>; export declare const mapDeploymentCreateToDeploymentCreateRequest: MapFunction<DeploymentCreate, DeploymentCreateRequest>; export declare const mapDeploymentVersionResponseToDeploymentVersion: MapFunction<DeploymentVersionResponse, DeploymentVersion>; export declare const mapDeploymentVersionInfoResponseToDeploymentVersionInfo: MapFunction<DeploymentVersionInfoResponse, DeploymentVersionInfo>;