@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_.
22 lines (21 loc) • 544 B
TypeScript
export interface IVariable {
id: string;
created: Date;
updated: Date;
name: string;
value: unknown;
tags: string[];
}
export declare const MAX_VARIABLE_NAME_LENGTH: 255;
export declare const MAX_VARIABLE_VALUE_LENGTH: 5000;
export declare class Variable implements IVariable {
readonly id: string;
readonly kind = "variable";
readonly created: Date;
readonly updated: Date;
name: string;
value: unknown;
tags: string[];
get valueString(): string;
constructor(variable: IVariable);
}