caprover-lib
Version:
A library to communicate with CapRover instances
19 lines • 558 B
TypeScript
export interface IRegistryApi {
registries: IRegistryInfo[];
defaultPushRegistryId: string | undefined;
}
export declare class IRegistryTypes {
static readonly LOCAL_REG = "LOCAL_REG";
static readonly REMOTE_REG = "REMOTE_REG";
}
declare type IRegistryType = 'LOCAL_REG' | 'REMOTE_REG';
export interface IRegistryInfo {
id: string;
registryUser: string;
registryPassword: string;
registryDomain: string;
registryImagePrefix: string;
registryType: IRegistryType;
}
export {};
//# sourceMappingURL=IRegistryInfo.d.ts.map