cnpmcore
Version:
15 lines (14 loc) • 353 B
TypeScript
import { RegistryType } from '../../common/enum/Registry';
import { Bone } from 'leoric';
export declare class Registry extends Bone {
id: bigint;
createdAt: Date;
updatedAt: Date;
registryId: string;
name: string;
host: string;
changeStream: string;
userPrefix: string;
type: RegistryType;
authToken?: string;
}