@nolebase/vitepress-plugin-git-changelog
Version:
A VitePress plugin that adds a changelog fetched from git to your documentation.
11 lines (10 loc) • 560 B
TypeScript
import type { Plugin } from 'vue';
import type { Author, Changelog, Commit, Contributor } from '../types';
import type { Locale, Options } from './types';
import { InjectionKey } from './constants';
export { default as NolebaseGitChangelog } from './components/Changelog.vue';
export { default as NolebaseGitContributors } from './components/Contributors.vue';
export * from './composables';
export declare const NolebaseGitChangelogPlugin: Plugin<Options[]>;
export { InjectionKey, };
export type { Author, Changelog, Commit, Contributor, Locale, Options, };