UNPKG

nimiq-vitepress-theme

Version:

Nimiq UI theme for VitePress

11 lines (10 loc) 471 B
import type { Plugin } from 'vite'; import { GitChangelog } from '@nolebase/vitepress-plugin-git-changelog/vite'; type GitChangelogOptions = Parameters<typeof GitChangelog>[0]; export interface NimiqVitepressVitePluginOptions { repoURL?: string; contentPath?: string; gitChangelog?: GitChangelogOptions | false; } export declare function NimiqVitepressVitePlugin({ repoURL, contentPath, gitChangelog, }: NimiqVitepressVitePluginOptions): Plugin[]; export {};