accessibility-insights-report 7.1.0 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/drop/index.d.ts +6 -0
- package/drop/index.js +405 -285
- package/package.json +1 -1
package/drop/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare namespace AccessibilityInsightsReport {
|
|
|
17
17
|
serviceName: string;
|
|
18
18
|
scanContext: ScanContext;
|
|
19
19
|
feedbackURL?: string;
|
|
20
|
+
expandPassSectionDetails?: ExpandPassSectionParameter;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
export type ScanSummaryDetails = {
|
|
@@ -134,6 +135,11 @@ declare namespace AccessibilityInsightsReport {
|
|
|
134
135
|
fromCombinedResults: (parameters: CombinedReportParameters) => Report;
|
|
135
136
|
};
|
|
136
137
|
|
|
138
|
+
export type ExpandPassSectionParameter = {
|
|
139
|
+
expandPassSection: boolean;
|
|
140
|
+
expandByTags?: string[];
|
|
141
|
+
}
|
|
142
|
+
|
|
137
143
|
export type ReporterFactory = () => Reporter;
|
|
138
144
|
|
|
139
145
|
export const reporterFactory: ReporterFactory;
|