npmci/dist/npmci.publish.d.ts
2016-11-24 23:21:40 +01:00

13 lines
384 B
TypeScript

/// <reference types="q" />
import 'typings-global';
import * as plugins from './npmci.plugins';
/**
* type of supported services
*/
export declare type TPubService = 'npm' | 'docker';
/**
* the main exported publish function.
* @param pubServiceArg references targeted service to publish to
*/
export declare let publish: (pubServiceArg?: TPubService) => plugins.q.Promise<{}>;