test-reporter/src/input-providers/input-provider.ts
2021-02-15 15:18:55 +01:00

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