@storm-software/eslint
Version:
A package containing the base ESLint configuration used by Storm Software across many projects.
13 lines (10 loc) • 414 B
TypeScript
import { StormWorkspaceConfig } from '@storm-software/config';
/**
* Get a banner header to display at the top of a file
*
* @param name - The name to use in the display
* @param workspaceConfig - The workspace config to use for additional information
* @returns The banner header
*/
declare const getFileBanner: (name?: string, workspaceConfig?: StormWorkspaceConfig) => string;
export { getFileBanner };