blob: 4fea986b0afa01617fffb0b7eae76a20f8e982b9 [file] [log] [blame]
export interface ReportInput {
[reportName: string]: FileContent[]
}
export interface FileContent {
file: string
content: string
}
export interface InputProvider {
load(): Promise<ReportInput>
listTrackedFiles(): Promise<string[]>
}