@storm-software/build-tools
Version:
A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.
11 lines (9 loc) • 301 B
TypeScript
/**
* Get a banner header to display at the top of a file
*
* @param name - The name to use in the display
* @param commentStart - The comment starting token
* @returns The banner header
*/
declare const getFileBanner: (name: string, commentStart?: string) => string;
export { getFileBanner };