test-reporter/src/report/patch-check.ts
2023-12-20 10:09:20 +01:00

6 lines
305 B
TypeScript

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[]}
}