@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_.
13 lines (12 loc) • 348 B
text/typescript
import { BlockTypeResponse } from '@/models/api/BlockTypeResponse'
import { SchemaResponse } from '@/models/api/SchemaResponse'
export type BlockSchemaResponse = {
id: string,
created: string,
updated: string,
checksum: string,
fields: SchemaResponse,
block_type_id: string,
block_type: BlockTypeResponse,
capabilities: string[],
}