@harbor/ui
Version:
Harbor shared UI components based on Clarity and Angular6
18 lines (17 loc) • 576 B
TypeScript
import { EventEmitter, OnInit } from "@angular/core";
import { TagService } from "../service/index";
import { ErrorHandler } from "../error-handler/index";
export declare class TagHistoryComponent implements OnInit {
private tagService;
private errorHandler;
tagId: string;
repositoryId: string;
backEvt: EventEmitter<any>;
config: any;
history: Object[];
loading: Boolean;
constructor(tagService: TagService, errorHandler: ErrorHandler);
ngOnInit(): void;
retrieve(repositoryId: string, tagId: string): void;
onBack(): void;
}