import * as figlet from "figlet"; // import * as chalk from "chalk"; const chalk = require("chalk"); // const myChalk: any = chalk; export const showWelcomeHeader = () => { console.log( chalk.blue( figlet.textSync("Sandcastle", { horizontalLayout: "full", font: "Slant" }) ) ); };