@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_.
16 lines (15 loc) • 509 B
TypeScript
import { ISchedule } from '../models';
import { RRuleScheduleResponse } from '../models/api/ScheduleResponse';
export interface IRRuleSchedule extends ISchedule {
timezone: string | null;
rrule: string;
}
export declare class RRuleSchedule implements IRRuleSchedule {
timezone: string | null;
rrule: string;
constructor(schedule: Pick<IRRuleSchedule, 'rrule' | 'timezone'>);
get raw(): string;
getRRule(): string;
toString(): string;
toResponse(): RRuleScheduleResponse;
}