UNPKG

markdown-it-git-graph

Version:

一个markdown-it插件,用于生成git提交图

11 lines (10 loc) 358 B
import type { Branch, Commit } from './git.js'; import type { Column, RequiredOptions } from './options.js'; import type { Drawable, Svg } from './svg.js'; type Table = Drawable & { columns: Column[]; commits: Commit[]; svg: Svg; }; declare function getTable(idx: number, branchs: Branch[], options: RequiredOptions): Table; export { getTable };