blob: e724d5d881b6fe2b0a1fc603bd2966df81c1b179 [file] [log] [blame]
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
}