UNPKG

@openinc/parse-server-opendash

Version:
18 lines (17 loc) 510 B
import type { Tenant } from "./Tenant"; export interface TenantTrustedDomainAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; host: string; tenant: Tenant; } export declare class TenantTrustedDomain extends Parse.Object<TenantTrustedDomainAttributes> { static className: string; constructor(data?: Partial<TenantTrustedDomainAttributes>); get host(): string; set host(value: string); get tenant(): Tenant; set tenant(value: Tenant); }