UNPKG

@sharksv/hyper

Version:

A CLI to bootstrap new projects!

17 lines (16 loc) 343 B
/** * 📟 Prints out an info header for Node.js CLIs * @param {object} uOptions * @example * ```ts * Info({ * title: '@projectName', * tagLine: 'by ✨@author✨', * description: 'A very useful description!', * version: '1.0', * clear: true, * }) * ``` */ declare function Info(uOptions: object): void; export default Info;