vue-docgen-cli
Version:
Generate documentation markdown files from VueJs components using the vue-docgen-api.
18 lines (17 loc) • 522 B
TypeScript
/**
* Replaces returns and tubes to make the input compatible with markdown
* also makes sure < and > are escaped so html tags are not rendered
* @param input
*/
export declare function mdclean(input: string): string;
/**
* Find a file in a directory, case-insensitive
*
* @param {string} filepath
* @return {string|undefined} File path with correct case
*/
export declare function findFileCaseInsensitive(filepath: string): string | undefined;
/**
* Clear cache.
*/
export declare function clearCache(): void;