@out-of-order/core 0.1.0 → 0.1.1
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/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ type AuditFormat = "by-element" | "text";
|
|
|
108
108
|
/** A single rule failure on one element. */
|
|
109
109
|
interface Issue {
|
|
110
110
|
/** Stable rule identifier. */
|
|
111
|
-
rule:
|
|
111
|
+
rule: AnyRuleId;
|
|
112
112
|
/** How serious this finding is. */
|
|
113
113
|
severity: Severity;
|
|
114
114
|
/** Human-readable description of what's wrong. */
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -11,7 +11,7 @@ export type AuditFormat = "by-element" | "text";
|
|
|
11
11
|
/** A single rule failure on one element. */
|
|
12
12
|
export interface Issue {
|
|
13
13
|
/** Stable rule identifier. */
|
|
14
|
-
rule:
|
|
14
|
+
rule: AnyRuleId;
|
|
15
15
|
/** How serious this finding is. */
|
|
16
16
|
severity: Severity;
|
|
17
17
|
/** Human-readable description of what's wrong. */
|