solidity-docgen
Version:
Documentation generator for Solidity smart contracts.
21 lines • 769 B
TypeScript
import { HelperOptions } from 'handlebars';
export * from '../../common/helpers';
/**
* Returns a Markdown heading marker. An optional number increases the heading level.
*
* Input Output
* {{h}} {{name}} # Name
* {{h 2}} {{name}} ## Name
*/
export declare function h(opts: HelperOptions): string;
export declare function h(hsublevel: number, opts: HelperOptions): string;
/**
* Delineates a section where headings should be increased by 1 or a custom number.
*
* {{#hsection}}
* {{>partial-with-headings}}
* {{/hsection}}
*/
export declare function hsection(opts: HelperOptions): string;
export declare function hsection(hsublevel: number, opts: HelperOptions): string;
//# sourceMappingURL=helpers.d.ts.map