UNPKG

npm-package-json-lint

Version:
10 lines (9 loc) 448 B
import { n as Severity, t as LintIssue } from "./lint-issue.js"; import { PackageJson } from "type-fest"; //#region src/rules/prefer-property-order.d.ts declare const ruleType = RuleType.Array; declare const minItems = 0; declare const lint: (packageJsonData: PackageJson | any, severity: Severity, preferredOrder: string[]) => LintIssue | null; //#endregion export { lint, minItems, ruleType }; //# sourceMappingURL=prefer-property-order.d.ts.map