runcheck 0.36.0 → 0.36.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/runcheck.d.ts +1 -0
- package/package.json +1 -1
package/dist/runcheck.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ type RcBase<T, RequiredKey extends boolean> = {
|
|
|
27
27
|
readonly withAutofix: (customAutofix: (input: unknown) => false | {
|
|
28
28
|
fixed: T;
|
|
29
29
|
}) => RcType<T>;
|
|
30
|
+
readonly _optional_key_?: RequiredKey;
|
|
30
31
|
};
|
|
31
32
|
declare const rc_undefined: RcType<undefined>;
|
|
32
33
|
declare const rc_null: RcType<null>;
|
package/package.json
CHANGED