UNPKG

@openinc/parse-server-opendash

Version:
15 lines (14 loc) 403 B
import type { Tenant } from "./Tenant"; export interface TenantMetaAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; tenant: Tenant; } export declare class TenantMeta extends Parse.Object<TenantMetaAttributes> { static className: string; constructor(data?: Partial<TenantMetaAttributes>); get tenant(): Tenant; set tenant(value: Tenant); }