@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) • 604 B
TypeScript
export declare const notificationStatus: readonly ["all", "active", "paused"];
export type NotificationStatus = typeof notificationStatus[number];
export interface INotification {
id: string;
created: Date;
updated: Date;
isActive: boolean;
stateNames: string[];
tags: string[];
blockDocumentId: string;
}
export declare class Notification implements INotification {
readonly id: string;
created: Date;
updated: Date;
isActive: boolean;
stateNames: string[];
tags: string[];
blockDocumentId: string;
constructor(notification: INotification);
}