migration.d.ts 522 B

123456789101112131415
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.dev/license
  7. */
  8. import { Rule } from '@angular-devkit/schematics';
  9. /**
  10. * Schematics rule that identifies and updates import declarations in TypeScript files.
  11. * Specifically, it modifies imports of '@angular/ssr' by appending '/node' if the
  12. * `CommonEngine` is used from the old entry point.
  13. *
  14. */
  15. export default function (): Rule;