import { Update } from './update'; import { Version } from './version'; import { PullRequestBody } from './util/pull-request-body'; import { PullRequestTitle } from './util/pull-request-title'; export interface ReleasePullRequest { readonly title: PullRequestTitle; readonly body: PullRequestBody; readonly labels: string[]; readonly headRefName: string; readonly version?: Version; readonly draft: boolean; updates: Update[]; }