UNPKG

simple-git

Version:

Simple GIT interface for node.js

10 lines (9 loc) 251 B
import type { SimpleGit } from '../../../typings'; export interface VersionResult { major: number; minor: number; patch: number | string; agent: string; installed: boolean; } export default function (): Pick<SimpleGit, 'version'>;