@sharksv/hyper
Version:
A CLI to bootstrap new projects!
13 lines (12 loc) • 353 B
TypeScript
/**
* 📟 Prints out a prettified message to the console.
* @param {string} type Print type (pass, error, warning, info)
* @param {string} msg Message to print
* @example
* ```ts
* import { Print } from '...'
* Print('warning', 'a very serious warning!')
* ```
*/
declare function Print(Type: string, Msg: string): void;
export default Print;