@absolutejs/absolute 0.19.0-beta.698 → 0.19.0-beta.699
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/dist/angular/browser.js.map +1 -1
- package/dist/angular/index.js +6 -5
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +6 -5
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +6 -5
- package/dist/build.js.map +3 -3
- package/dist/index.js +7 -6
- package/dist/index.js.map +4 -4
- package/dist/src/angular/components/defer-slot.component.d.ts +1 -1
- package/dist/src/core/prepare.d.ts +18 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit } from '@angular/core';
|
|
1
|
+
import { type AfterViewInit } from '@angular/core';
|
|
2
2
|
import { type AngularDeferSlotPayload } from './defer-slot-payload.js';
|
|
3
3
|
import { type DeferSlotTemplateContext, DeferErrorTemplateDirective, DeferFallbackTemplateDirective, DeferResolvedTemplateDirective } from './defer-slot-templates.directive.js';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -25,6 +25,15 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
25
25
|
macroFn: {};
|
|
26
26
|
parser: {};
|
|
27
27
|
response: {};
|
|
28
|
+
} & {
|
|
29
|
+
schema: {};
|
|
30
|
+
standaloneSchema: {};
|
|
31
|
+
macro: {};
|
|
32
|
+
macroFn: {};
|
|
33
|
+
parser: {};
|
|
34
|
+
response: {
|
|
35
|
+
200: Response;
|
|
36
|
+
};
|
|
28
37
|
}, ((({
|
|
29
38
|
".well-known": {
|
|
30
39
|
appspecific: {
|
|
@@ -235,6 +244,15 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
235
244
|
macroFn: {};
|
|
236
245
|
parser: {};
|
|
237
246
|
response: {};
|
|
247
|
+
} & {
|
|
248
|
+
schema: {};
|
|
249
|
+
standaloneSchema: {};
|
|
250
|
+
macro: {};
|
|
251
|
+
macroFn: {};
|
|
252
|
+
parser: {};
|
|
253
|
+
response: {
|
|
254
|
+
200: Response;
|
|
255
|
+
};
|
|
238
256
|
}, {} | {
|
|
239
257
|
[x: string]: {
|
|
240
258
|
get: {
|
package/package.json
CHANGED