@absolutejs/absolute 0.19.0-beta.370 → 0.19.0-beta.372

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.
@@ -2,12 +2,12 @@ import '@angular/compiler';
2
2
  import { OnInit } from '@angular/core';
3
3
  type SlotResolver = () => Promise<string> | string;
4
4
  export declare class StreamSlotComponent implements OnInit {
5
- readonly className: import("@angular/core").InputSignal<string | undefined>;
6
- readonly errorHtml: import("@angular/core").InputSignal<string | undefined>;
7
- readonly fallbackHtml: import("@angular/core").InputSignal<string>;
8
- readonly id: import("@angular/core").InputSignal<string>;
9
- readonly resolve: import("@angular/core").InputSignal<SlotResolver>;
10
- readonly timeoutMs: import("@angular/core").InputSignal<number | undefined>;
5
+ className?: string;
6
+ errorHtml?: string;
7
+ fallbackHtml: string;
8
+ id: string;
9
+ resolve: SlotResolver;
10
+ timeoutMs?: number;
11
11
  ngOnInit(): void;
12
12
  }
13
13
  export {};
package/package.json CHANGED
@@ -306,5 +306,5 @@
306
306
  "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
307
307
  },
308
308
  "types": "./dist/src/index.d.ts",
309
- "version": "0.19.0-beta.370"
309
+ "version": "0.19.0-beta.372"
310
310
  }