harper.js 0.32.1 → 0.33.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/dist/harper.d.ts +1 -1
- package/dist/harper.js +1 -1
- package/dist/harper_wasm_bg.wasm +0 -0
- package/package.json +2 -2
package/dist/harper.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export declare class Lint {
|
|
|
83
83
|
|
|
84
84
|
/** A linting rule configuration dependent on upstream Harper's available rules.
|
|
85
85
|
* This is a record, since you shouldn't hard-code the existence of any particular rules and should generalize based on this struct. */
|
|
86
|
-
export declare type LintConfig = Record<string, boolean |
|
|
86
|
+
export declare type LintConfig = Record<string, boolean | null>;
|
|
87
87
|
|
|
88
88
|
/** An interface for an object that can perform linting actions. */
|
|
89
89
|
export declare interface Linter {
|