@hapic/harbor
Version:
A harbor http api client.
9 lines (8 loc) • 441 B
TypeScript
import { BaseAPI } from '../base';
import type { BaseAPIContext } from '../type';
import type { ProjectArtifactLabelCreateContext, ProjectArtifactLabelDeleteContext } from './type';
export declare class ProjectRepositoryArtifactLabelAPI extends BaseAPI {
constructor(context: BaseAPIContext);
create(options: ProjectArtifactLabelCreateContext): Promise<void>;
delete(options: ProjectArtifactLabelDeleteContext): Promise<void>;
}