UNPKG

@cto.ai/ops

Version:

💻 CTO.ai Ops - The CLI built for Teams 🚀

8 lines (7 loc) • 553 B
import { OpCommand, RegistryAuth } from '../types'; import { RegistryAuthService } from './RegistryAuth'; import { FeathersClient } from './Feathers'; export declare class Publish { publishOpToAPI: (op: OpCommand, platformVersion: string, teamName: string, accessToken: string, api: FeathersClient, isGlueCode?: boolean) => Promise<any>; publishOpToRegistry: (apiOp: OpCommand, registryAuth: RegistryAuth, teamName: string, accessToken: string, registryAuthService: RegistryAuthService, api: FeathersClient, version: string) => Promise<void>; }