npmci/dist/npmci.publish.d.ts

11 lines
369 B
TypeScript
Raw Normal View History

2017-03-11 00:10:37 +00:00
import * as NpmciBuildDocker from './npmci.build.docker';
/**
* type of supported services
*/
2016-11-24 22:21:40 +00:00
export declare type TPubService = 'npm' | 'docker';
/**
* the main exported publish function.
2016-09-04 14:05:47 +00:00
* @param pubServiceArg references targeted service to publish to
*/
2017-03-11 00:10:37 +00:00
export declare let publish: (pubServiceArg?: TPubService) => Promise<void | NpmciBuildDocker.Dockerfile[]>;