bowtie-co/ts-github

View on GitHub
src/Github/Label.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IGithubLabel {
  id: number;
  node_id: string;
  url: string;
  name: string;
  color: string;
  default: boolean;
  description: string;
}