create patch request params with output

This commit is contained in:
nicolo.castro 2023-12-20 10:09:20 +01:00
parent cf7f2a70cf
commit 16a69ceefa
No known key found for this signature in database
GPG key ID: CD97C9B5EF7D74A8
2 changed files with 12 additions and 7 deletions

View file

@ -0,0 +1,6 @@
import {RestEndpointMethodTypes} from '@octokit/plugin-rest-endpoint-methods'
import {Annotation} from './get-annotations'
export type UpdateChecksParametersWithOutput = RestEndpointMethodTypes['checks']['update']['parameters'] & {
output: {title: string; summary: string; annotations: Annotation[]}
}