renovate/lib/types/git.ts
Michael Kriese 6474dd49e5
chore: lint fixes (#7018)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2020-08-19 06:46:00 +02:00

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>;