@absolutejs/absolute 0.19.0-beta.981 → 0.19.0-beta.983

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -402,5 +402,5 @@
402
402
  ]
403
403
  }
404
404
  },
405
- "version": "0.19.0-beta.981"
405
+ "version": "0.19.0-beta.983"
406
406
  }
@@ -1,3 +0,0 @@
1
- import type { AngularRouteMount } from '../../types/angular';
2
- export declare const loadAngularRouteMounts: () => Promise<AngularRouteMount[]>;
3
- export declare const matchAngularBasePath: (mounts: AngularRouteMount[], urlPath: string) => string;
@@ -1,29 +0,0 @@
1
- import type { AngularProvidersImport } from './parseAngularConfigImports';
2
- import type { AngularHandlerCall } from './scanAngularHandlerCalls';
3
- import type { AngularPageRoutes } from './scanAngularPageRoutes';
4
- export type EmittedProvidersFile = {
5
- manifestKey: string;
6
- /** Absolute path to the emitted file. */
7
- outputPath: string;
8
- /** The mount path (e.g. `/portal/`) the generated file derived
9
- * APP_BASE_HREF from, or null when the call wasn't inside a
10
- * sub-router route. */
11
- basePath: string | null;
12
- /** `true` when the call carried a `providers:` argument. */
13
- hasProviders: boolean;
14
- };
15
- export type EmitAngularProvidersOptions = {
16
- /** AST-extracted import info for the user's `angular.providers`
17
- * binding (from absolute.config.ts). Each emitted file re-imports
18
- * the same binding by its source path so pages and per-handler
19
- * calls never write providers themselves. Null when the config
20
- * doesn't set `angular.providers` — the emitter skips the global
21
- * import. */
22
- providersImport?: AngularProvidersImport | null;
23
- };
24
- export declare const emitAngularProvidersFiles: (projectRoot: string, calls: AngularHandlerCall[], pageRoutes: AngularPageRoutes[], options?: EmitAngularProvidersOptions) => EmittedProvidersFile[];
25
- /** Absolute path of the directory the emitter writes to. Exposed so other
26
- * build steps (`compileAngular`'s client wrapper, the SSR `pageHandler`)
27
- * can compute relative paths to the generated files without hard-coding
28
- * the convention. */
29
- export declare const getProvidersOutputDir: (projectRoot: string) => string;
@@ -1,3 +0,0 @@
1
- import type { AngularHandlerCall } from './scanAngularHandlerCalls';
2
- export declare const getRouteMountsOutputPath: (projectRoot: string) => string;
3
- export declare const emitAngularRouteMounts: (projectRoot: string, calls: AngularHandlerCall[]) => string;