@@ -322,6 +322,9 @@ export type ContentChild = Query;
322322// @public
323323export const ContentChild: ContentChildDecorator ;
324324
325+ // @public
326+ export const contentChild: ContentChildFunction ;
327+
325328// @public
326329export interface ContentChildDecorator {
327330 (selector : ProviderToken <unknown > | Function | string , opts ? : {
@@ -337,12 +340,44 @@ export interface ContentChildDecorator {
337340 }): ContentChild ;
338341}
339342
343+ // @public
344+ export interface ContentChildFunction {
345+ <LocatorT >(locator : ProviderToken <LocatorT > | string , opts ? : {
346+ descendants? : boolean ;
347+ }): Signal <LocatorT | undefined >;
348+ // (undocumented)
349+ <LocatorT , ReadT >(locator : ProviderToken <LocatorT > | string , opts : {
350+ descendants? : boolean ;
351+ read: ProviderToken <ReadT >;
352+ }): Signal <ReadT | undefined >;
353+ required: {
354+ <LocatorT >(locator : ProviderToken <LocatorT > | string , opts ? : {
355+ descendants? : boolean ;
356+ }): Signal <LocatorT >;
357+ <LocatorT , ReadT >(locator : ProviderToken <LocatorT > | string , opts : {
358+ descendants? : boolean ;
359+ read: ProviderToken <ReadT >;
360+ }): Signal <ReadT >;
361+ };
362+ }
363+
340364// @public
341365export type ContentChildren = Query ;
342366
343367// @public
344368export const ContentChildren: ContentChildrenDecorator ;
345369
370+ // @public (undocumented)
371+ export function contentChildren<LocatorT >(locator : ProviderToken <LocatorT > | string , opts ? : {
372+ descendants? : boolean ;
373+ }): Signal <ReadonlyArray <LocatorT >>;
374+
375+ // @public (undocumented)
376+ export function contentChildren<LocatorT , ReadT >(locator : ProviderToken <LocatorT > | string , opts : {
377+ descendants? : boolean ;
378+ read: ProviderToken <ReadT >;
379+ }): Signal <ReadonlyArray <ReadT >>;
380+
346381// @public
347382export interface ContentChildrenDecorator {
348383 (selector : ProviderToken <unknown > | Function | string , opts ? : {
@@ -1598,6 +1633,9 @@ export type ViewChild = Query;
15981633// @public
15991634export const ViewChild: ViewChildDecorator ;
16001635
1636+ // @public
1637+ export const viewChild: ViewChildFunction ;
1638+
16011639// @public
16021640export interface ViewChildDecorator {
16031641 (selector : ProviderToken <unknown > | Function | string , opts ? : {
@@ -1611,12 +1649,35 @@ export interface ViewChildDecorator {
16111649 }): ViewChild ;
16121650}
16131651
1652+ // @public
1653+ export interface ViewChildFunction {
1654+ <LocatorT >(locator : ProviderToken <LocatorT > | string ): Signal <LocatorT | undefined >;
1655+ // (undocumented)
1656+ <LocatorT , ReadT >(locator : ProviderToken <LocatorT > | string , opts : {
1657+ read: ProviderToken <ReadT >;
1658+ }): Signal <ReadT | undefined >;
1659+ required: {
1660+ <LocatorT >(locator : ProviderToken <LocatorT > | string ): Signal <LocatorT >;
1661+ <LocatorT , ReadT >(locator : ProviderToken <LocatorT > | string , opts : {
1662+ read: ProviderToken <ReadT >;
1663+ }): Signal <ReadT >;
1664+ };
1665+ }
1666+
16141667// @public
16151668export type ViewChildren = Query ;
16161669
16171670// @public
16181671export const ViewChildren: ViewChildrenDecorator ;
16191672
1673+ // @public (undocumented)
1674+ export function viewChildren<LocatorT >(locator : ProviderToken <LocatorT > | string ): Signal <ReadonlyArray <LocatorT >>;
1675+
1676+ // @public (undocumented)
1677+ export function viewChildren<LocatorT , ReadT >(locator : ProviderToken <LocatorT > | string , opts : {
1678+ read: ProviderToken <ReadT >;
1679+ }): Signal <ReadonlyArray <ReadT >>;
1680+
16201681// @public
16211682export interface ViewChildrenDecorator {
16221683 (selector : ProviderToken <unknown > | Function | string , opts ? : {
0 commit comments