liveperson-functions-cli
Version:
LivePerson Functions CLI
15 lines (14 loc) • 528 B
TypeScript
import { Hook } from '@oclif/core';
/**
* Hook which will run if the invoke command was triggered.
* Will display the difference of the remote and local node.js version
* @param {*} opts - passed options from the oclif framework
* @returns {Promise<void>} - update version hint
*/
export declare function nodeVersion(opts: any, version?: string): Promise<void>;
/**
* Runs the a hook every time the CLI gets initialised
* @param { config } - oclif configuration
*/
declare const hook: Hook<'init'>;
export default hook;