bowtie-co/ts-github

View on GitHub
src/Github/Branch.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IGithubCommit } from '.';

export interface IGithubBranchProtection {
  enabled: boolean;
}

export interface IGithubBranch {
  name: string;
  commit?: IGithubCommit;
  protected?: boolean;
  protection?: IGithubBranchProtection;
  protection_url?: string;
}