@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
15 lines • 506 B
TypeScript
export type CIRunnerEnvironment = {
commit: string | undefined | null;
pullRequestNumber: string | undefined | null;
repository: string | undefined | null;
baselineCommit: string | undefined | null;
};
export type GitInfo = {
repository: string | null;
pullRequestNumber: string | null;
commit: string | null;
author: string | null;
baselineCommit: string | null;
};
export declare function gitInfo(noGit: () => void): Promise<GitInfo>;
//# sourceMappingURL=git.d.ts.map