UNPKG

@openinc/parse-server-opendash

Version:
32 lines (31 loc) 1.01 kB
import type { Knowledge_Category } from "./Knowledge_Category"; import type { Language } from "./Language"; import type { Tenant } from "./Tenant"; export interface Knowledge_DocumentAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; annotations: any[]; category: Knowledge_Category; document: Parse.File; label: string; language: Language; tenant: Tenant; } export declare class Knowledge_Document extends Parse.Object<Knowledge_DocumentAttributes> { static className: string; constructor(data?: Partial<Knowledge_DocumentAttributes>); get annotations(): any[]; set annotations(value: any[]); get category(): Knowledge_Category; set category(value: Knowledge_Category); get document(): Parse.File; set document(value: Parse.File); get label(): string; set label(value: string); get language(): Language; set language(value: Language); get tenant(): Tenant; set tenant(value: Tenant); }