UNPKG

npm-package-json-lint

Version:
11 lines (10 loc) 485 B
import { n as Severity } from "./lint-issue.js"; import { t as LintResult } from "./lint-result.js"; import { PackageJson } from "type-fest"; //#region src/rules/valid-values-publishConfig.d.ts declare const ruleType = RuleType.Array; declare const minItems = 1; declare const lint: (packageJsonData: PackageJson | any, severity: Severity, validValues: object[]) => LintResult; //#endregion export { lint, minItems, ruleType }; //# sourceMappingURL=valid-values-publishConfig.d.ts.map