UNPKG

@openinc/parse-server-opendash

Version:
31 lines (30 loc) 954 B
import type { Knowledge_Document } from "./Knowledge_Document"; import type { Tenant } from "./Tenant"; export interface Knowledge_DocumentPageAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; annotations: any[]; document: Knowledge_Document; image: Parse.File; label: string; page: number; tenant: Tenant; } export declare class Knowledge_DocumentPage extends Parse.Object<Knowledge_DocumentPageAttributes> { static className: string; constructor(data?: Partial<Knowledge_DocumentPageAttributes>); get annotations(): any[]; set annotations(value: any[]); get document(): Knowledge_Document; set document(value: Knowledge_Document); get image(): Parse.File; set image(value: Parse.File); get label(): string; set label(value: string); get page(): number; set page(value: number); get tenant(): Tenant; set tenant(value: Tenant); }