@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_.
11 lines (10 loc) • 458 B
TypeScript
import { InjectionKey } from 'vue';
import { Schema } from '../../schemas/types/schema';
import { PrefectKind } from '../../schemas/types/schemaValues';
export type SchemaFormSettings = {
schema: Schema;
kinds: PrefectKind[];
skipDefaultValueInitialization: boolean;
};
export declare const schemaFormSettingsInjectionKey: InjectionKey<Readonly<SchemaFormSettings>>;
export declare function useSchemaFormSettings(): Readonly<SchemaFormSettings>;