vue-devui
Version:
DevUI components based on Vite and Vue3
7 lines (6 loc) • 329 B
TypeScript
import { Ref, SetupContext } from "vue";
import { GitGraphData, GitGraphProps } from "./git-graph-types";
export default function useGitGraph(props: GitGraphProps, ctx: SetupContext, isDark: Ref<boolean>): {
initTheme: () => void;
initGraph: (element: HTMLElement, options: GitGraphData, isDarkMode: boolean) => void;
};