@cto.ai/ops
Version:
💻 CTO.ai Ops - The CLI built for Teams 🚀
7 lines (6 loc) • 315 B
TypeScript
import { ApiService, RegistryAuth } from '../types';
export declare class RegistryAuthService {
protected api: ApiService;
constructor(api?: ApiService);
create(accessToken: string, teamname: string, opName: string, opVersion: string, pullAccess: boolean, pushAccess: boolean): Promise<RegistryAuth>;
}