2016-08-02 14:20:32 +00:00
|
|
|
/// <reference types="q" />
|
2016-05-30 00:29:30 +00:00
|
|
|
import "typings-global";
|
2016-08-02 14:20:32 +00:00
|
|
|
import * as plugins from "./npmci.plugins";
|
2016-09-04 11:42:22 +00:00
|
|
|
/**
|
|
|
|
* type of supported services
|
|
|
|
*/
|
|
|
|
export declare type registryService = "npm" | "docker";
|
|
|
|
/**
|
|
|
|
* the main exported publish function.
|
|
|
|
* @param registryServiceArg the serviceArg
|
|
|
|
*/
|
|
|
|
export declare let publish: (registryServiceArg?: registryService) => plugins.q.Promise<{}>;
|