We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc21f09 commit 447c3e1Copy full SHA for 447c3e1
libs/core/src/lib/types.ts
@@ -191,7 +191,10 @@ export type NgtAttachFunction<TChild = any, TParent = any> = (
191
store: NgtSignalStore<NgtState>,
192
) => void | (() => void);
193
194
-export type NgtAttachable<TChild = any, TParent = any> = NgtAttachFunction<TChild, TParent> | string | string[];
+export type NgtAttachable<TChild = any, TParent = any> =
195
+ | NgtAttachFunction<TChild, TParent>
196
+ | string
197
+ | (string | number)[];
198
199
export interface NgtAfterAttach<
200
TChild extends NgtInstanceNode = NgtInstanceNode,
0 commit comments