8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
export type GitSource = {
|
|
type: 'github';
|
|
org: string;
|
|
name: string;
|
|
ref: string;
|
|
relativeFromGitRoot: string;
|
|
};
|