mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-17 06:47:09 +01:00
6 lines
305 B
TypeScript
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[]}
|
|
}
|