angular-three 2.0.0-beta.256 → 2.0.0-beta.258
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/lib/directives/args.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class NgtArgs
|
|
3
|
-
args: import("@angular/core").InputSignal<
|
|
2
|
+
export declare class NgtArgs {
|
|
3
|
+
args: import("@angular/core").InputSignal<any[] | null>;
|
|
4
4
|
private vcr;
|
|
5
5
|
private zone;
|
|
6
6
|
private template;
|
|
7
7
|
private autoEffect;
|
|
8
8
|
protected injected: boolean;
|
|
9
|
-
protected injectedArgs:
|
|
9
|
+
protected injectedArgs: any[] | null;
|
|
10
10
|
private view?;
|
|
11
11
|
constructor();
|
|
12
|
-
get value():
|
|
12
|
+
get value(): any[] | null;
|
|
13
13
|
validate(): boolean;
|
|
14
14
|
private createView;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgtArgs
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgtArgs
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtArgs, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgtArgs, "ng-template[args]", never, { "args": { "alias": "args"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
17
|
}
|