nycJSorg/angular-presentation

View on GitHub
apps/angular-thirty-seconds/src/app/shared/interfaces/pull-request.intreface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface CreatePullRequest {
  title: string;
  body: string;
  branchName: string;
  labels?: Array<string>;
}

export interface PullRequest {
  title: string;
  html_url: string;
}