UNPKG

@openinc/parse-server-opendash

Version:
22 lines (21 loc) 717 B
import type { _User } from "./_User"; import { Tenant } from "./Tenant"; export interface Documentation_ConfigAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; lastCommitSha?: string; tenant?: Tenant; user?: _User; } export declare class Documentation_Config extends Parse.Object<Documentation_ConfigAttributes> { static className: string; constructor(data?: Partial<Documentation_ConfigAttributes>); get lastCommitSha(): string | undefined; set lastCommitSha(value: string | undefined); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); get user(): _User | undefined; set user(value: _User | undefined); }