UNPKG

@gobstones/gobstones-scripts

Version:

Scripts to abstract away build configuration of Gobstones Project's libraries and modules.

13 lines 384 B
/** * Returns the string for the bash command to run * an echo, showing a message. * * @param text - The message to display * @param styles - One or more styles to apply to the text. * * @example echo('print this', 'bgRed blue') * * @returns The bash command string. */ export declare const echo: (text: string, styles?: string) => string; //# sourceMappingURL=echo.d.ts.map