UNPKG

az-deployment-denoise

Version:
21 lines 601 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConfigT = void 0; const t = require("io-ts"); const whatif_1 = require("./whatif"); const RuleT = t.intersection([ t.type({}), t.partial({ resourceGroupName: t.string, providerNamespace: t.string, resourceType: t.string, resourceName: t.string, resourceNameRegex: t.string, propertyPath: t.string, propertyChangeType: whatif_1.PropertyChangeTypeT, }), ]); exports.ConfigT = t.type({ rules: t.array(RuleT), }); //# sourceMappingURL=config.js.map