/** Key details about a repo */
export interface RepoMetaData {
    /** A path like "artsy/eigen" */
    repoSlug: string;
    /** The ID for the pull/merge request "11" */
    pullRequestID: string;
}
