UNPKG

428 BTypeScriptView Raw
1import { ApiService, RegistryAuth } from '../types';
2export declare class RegistryAuthService {
3 protected api: ApiService;
4 constructor(api?: ApiService);
5 create(accessToken: string, teamname: string, opName: string, opVersion: string, pullAccess: boolean, pushAccess: boolean): Promise<RegistryAuth>;
6 delete(accessToken: string, id: number, teamName: string, opName: string, opVersion: string): Promise<void>;
7}