elearning/Frontend-Learner/node_modules/eslint-plugin-jsdoc/typings/gitdown.d.ts
2026-01-13 10:48:02 +07:00

16 lines
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
}