UNPKG

@openinc/parse-server-opendash

Version:
17 lines (16 loc) 471 B
export interface ML_DataSelectionAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; label?: string; pipe: any; } export declare class ML_DataSelection extends Parse.Object<ML_DataSelectionAttributes> { static className: string; constructor(data?: Partial<ML_DataSelectionAttributes>); get label(): string | undefined; set label(value: string | undefined); get pipe(): any; set pipe(value: any); }