Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
pataar authored and pieter committed Dec 27, 2023
1 parent b9a4375 commit 4916a4c
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions packages/core/src/resources/MergeRequests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,21 +263,22 @@ export type EditMergeRequestOptions = {
allowMaintainerToPush?: boolean;
};


export type CreateMergeRequestOptions = {
targetProjectId?: number;} & Pick<EditMergeRequestOptions,
'assigneeId' |
'assigneeIds' |
'description' |
'labels' |
'title' |
'milestoneId' |
'reviewerId' |
'reviewerIds' |
'removeSourceBranch' |
'allowCollaboration' |
'allowMaintainerToPush' |
'squash'
targetProjectId?: number;
} & Pick<
EditMergeRequestOptions,
| 'assigneeId'
| 'assigneeIds'
| 'description'
| 'labels'
| 'title'
| 'milestoneId'
| 'reviewerId'
| 'reviewerIds'
| 'removeSourceBranch'
| 'allowCollaboration'
| 'allowMaintainerToPush'
| 'squash'
>;

// Export API
Expand Down

0 comments on commit 4916a4c

Please sign in to comment.