npmci/dist/mod_publish/index.d.ts
PhilKunz External b6a85319b0 Go modular
2017-05-18 20:40:09 +00:00

10 lines
278 B
TypeScript

/**
* 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) => Promise<any>;