constructor-checks.js 701 B

1234567891011121314151617
  1. "use strict";
  2. /**
  3. * Use of this source code is governed by an MIT-style license that can be
  4. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  5. */
  6. Object.defineProperty(exports, "__esModule", { value: true });
  7. exports.constructorChecks = void 0;
  8. const schematics_1 = require("@angular/cdk/schematics");
  9. /**
  10. * List of class names for which the constructor signature has been changed. The new constructor
  11. * signature types don't need to be stored here because the signature will be determined
  12. * automatically through type checking.
  13. */
  14. exports.constructorChecks = {
  15. [schematics_1.TargetVersion.V19]: []
  16. };
  17. //# sourceMappingURL=constructor-checks.js.map