mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
6474dd49e5
Co-authored-by: Rhys Arkins <rhys@arkins.net>
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
export type GitTreeNode = {
|
|
type: 'tree' | 'blob';
|
|
path: string;
|
|
mode: string;
|
|
};
|
|
|
|
export type GitProtocol = 'ssh' | 'http' | 'https';
|
|
|
|
export type GitOptions = Record<string, null | string | number>;
|