UNPKG

496 BTypeScriptView Raw
1import { Op, RegistryAuth } from '../types';
2import { RegistryAuthService } from './RegistryAuth';
3export declare class Publish {
4 constructor();
5 publishOpToAPI: (op: Op, version: string, teamID: string, accessToken: string, api: import("./Feathers").FeathersClient, isGlueCode?: boolean) => Promise<any>;
6 publishOpToRegistry: (apiOp: Op, registryAuth: RegistryAuth, teamName: string, accessToken: string, registryAuthService: RegistryAuthService, version: string) => Promise<void>;
7}