mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-03 11:45:22 -08:00
14 lines
245 B
TypeScript
14 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[]>
|
|
}
|