honkit
Version:
HonKit is building beautiful books using Markdown.
15 lines (13 loc) • 385 B
TypeScript
/**
Convert a filePath (absolute) to an url (without hostname).
It returns an absolute path.
"README.md" -> "/"
"test/hello.md" -> "test/hello.html"
"test/README.md" -> "test/"
@param {Output} output
@param {string} filePath
@return {string}
*/
declare function fileToURL(output: any, filePath: any): string;
export default fileToURL;
//# sourceMappingURL=fileToURL.d.ts.map