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

25 lines (24 loc) 609 B
export interface IBlockType { id: string; created: Date; updated: Date; name: string; slug: string; logoUrl: string | null; documentationUrl: string | null; description: string | null; codeExample: string | null; } export declare class BlockType implements IBlockType { readonly id: string; readonly kind = "blockType"; created: Date; updated: Date; name: string; slug: string; logoUrl: string | null; documentationUrl: string | null; description: string | null; codeExample: string | null; constructor(blockType: IBlockType); }