mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-18 07:07:08 +01:00
13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
export interface ReportInput {
|
|
[reportName: string]: FileContent[]
|
|
}
|
|
|
|
export interface FileContent {
|
|
file: string
|
|
content: string
|
|
}
|
|
|
|
export interface InputProvider {
|
|
load(): Promise<ReportInput>
|
|
listTrackedFiles(): Promise<string[]>
|
|
}
|