UNPKG

scheunemann-interfaces

Version:
15 lines (14 loc) 461 B
import { IMaster } from '../interfaces/i-master'; import { IMasterV1 } from '../interfaces/i-master-v1'; export declare class MasterEntity implements IMaster { catalog: string | null; companyId: string; containerId: string; database: string | null; hostName: string | null; hostUrl: string | null; masterV1: IMasterV1 | null; password: string | null; userName: string | null; constructor(data?: Partial<MasterEntity>); }