eslint-plugin-jsdoc
Version:
JSDoc linting rules for ESLint.
17 lines (16 loc) • 360 B
TypeScript
declare module 'gitdown' {
interface Gitdown {
setConfig: (info: {
gitinfo: {
defaultBranchName: string,
gitPath: string
}
}) => void
get: () => string
registerHelper: (name: string, helper: {
compile: () => string
weight?: number
}) => void
}
export function readFile(path: string): Gitdown
}