UNPKG

@openinc/parse-server-opendash

Version:
24 lines (23 loc) 638 B
import type { Tenant } from "./Tenant"; export interface VirtualKPIAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; label: string; pipe: any; template: any; tenant?: Tenant; } export declare class VirtualKPI extends Parse.Object<VirtualKPIAttributes> { static className: string; constructor(data?: Partial<VirtualKPIAttributes>); get label(): string; set label(value: string); get pipe(): any; set pipe(value: any); get template(): any; set template(value: any); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); }