2025-05-12 05:38:44 +09:00

11 lines
254 B
TypeScript

declare function Git(): void;
declare namespace Git {
var isUrl: (giturl: any) => boolean;
var parseUrl: (giturl: any) => {
host: any;
ref: any;
filepath: any;
};
}
export default Git;
//# sourceMappingURL=git.d.ts.map