@@ -109,15 +109,15 @@ export type Callable = typeof Function.prototype.call | {
109109};
110110
111111// @public
112- export interface CaptureType < TSource , TParent > {
112+ export interface CaptureType {
113113}
114114
115115// @public
116116export interface ChildListDirectiveOptions <T = any > extends NodeBehaviorOptions <T >, Omit <MutationObserverInit , " subtree" | " childList" > {
117117}
118118
119119// @public
120- export function children<TSource = any , TParent = any >(propertyOrOptions : (keyof TSource & string ) | ChildrenDirectiveOptions <keyof TSource & string >): CaptureType < TSource , TParent > ;
120+ export function children<TSource = any >(propertyOrOptions : (keyof TSource & string ) | ChildrenDirectiveOptions <keyof TSource & string >): CaptureType ;
121121
122122// @public
123123export class ChildrenDirective extends NodeObservationDirective <ChildrenDirectiveOptions > {
@@ -753,7 +753,7 @@ export class PropertyChangeNotifier implements Notifier {
753753}
754754
755755// @public
756- export const ref: <TSource = any , TParent = any >(propertyName : keyof TSource & string ) => CaptureType < TSource , TParent > ;
756+ export const ref: <TSource = any >(propertyName : keyof TSource & string ) => CaptureType ;
757757
758758// @public
759759export class RefDirective extends StatelessAttachedAttributeDirective <string > {
@@ -762,7 +762,7 @@ export class RefDirective extends StatelessAttachedAttributeDirective<string> {
762762}
763763
764764// @public
765- export function render<TSource = any , TItem = any , TParent = any >(value ? : Expression <TSource , TItem > | Binding <TSource , TItem > | {}, template ? : ContentTemplate | string | Expression <TSource , ContentTemplate | string | Node , TParent > | Binding <TSource , ContentTemplate | string | Node , TParent >): CaptureType < TSource , TParent > ;
765+ export function render<TSource = any , TItem = any , TParent = any >(value ? : Expression <TSource , TItem > | Binding <TSource , TItem > | {}, template ? : ContentTemplate | string | Expression <TSource , ContentTemplate | string | Node , TParent > | Binding <TSource , ContentTemplate | string | Node , TParent >): CaptureType ;
766766
767767// @public
768768export class RenderBehavior <TSource = any > implements ViewBehavior , Subscriber {
@@ -788,7 +788,7 @@ export class RenderDirective<TSource = any> implements HTMLDirective, ViewBehavi
788788}
789789
790790// @public
791- export function repeat<TSource = any , TArray extends ReadonlyArray <any > = ReadonlyArray <any >, TParent = any >(items : Expression <TSource , TArray , TParent > | Binding <TSource , TArray , TParent > | ReadonlyArray <any >, template : Expression <TSource , ViewTemplate <any , TSource >> | Binding <TSource , ViewTemplate <any , TSource >> | ViewTemplate <any , TSource >, options ? : RepeatOptions ): CaptureType < TSource , TParent > ;
791+ export function repeat<TSource = any , TArray extends ReadonlyArray <any > = ReadonlyArray <any >, TParent = any >(items : Expression <TSource , TArray , TParent > | Binding <TSource , TArray , TParent > | ReadonlyArray <any >, template : Expression <TSource , ViewTemplate <any , TSource >> | Binding <TSource , ViewTemplate <any , TSource >> | ViewTemplate <any , TSource >, options ? : RepeatOptions ): CaptureType ;
792792
793793// @public
794794export class RepeatBehavior <TSource = any > implements ViewBehavior , Subscriber {
@@ -827,7 +827,7 @@ export interface ShadowRootOptions extends ShadowRootInit {
827827}
828828
829829// @public
830- export function slotted<TSource = any , TParent = any >(propertyOrOptions : (keyof TSource & string ) | SlottedDirectiveOptions <keyof TSource & string >): CaptureType < TSource , TParent > ;
830+ export function slotted<TSource = any >(propertyOrOptions : (keyof TSource & string ) | SlottedDirectiveOptions <keyof TSource & string >): CaptureType ;
831831
832832// @public
833833export class SlottedDirective extends NodeObservationDirective <SlottedDirectiveOptions > {
@@ -972,7 +972,7 @@ export interface SyntheticView<TSource = any, TParent = any> extends View<TSourc
972972// @public
973973export interface SyntheticViewTemplate <TSource = any , TParent = any > {
974974 create(): SyntheticView <TSource , TParent >;
975- inline(): CaptureType < TSource , TParent > ;
975+ inline(): CaptureType ;
976976}
977977
978978// @public
@@ -990,7 +990,7 @@ export const TemplateOptions: {
990990export type TemplateOptions = (typeof TemplateOptions )[keyof typeof TemplateOptions ];
991991
992992// @public
993- export type TemplateValue <TSource , TParent = any > = Expression <TSource , any , TParent > | Binding <TSource , any , TParent > | HTMLDirective | CaptureType < TSource , TParent > ;
993+ export type TemplateValue <TSource , TParent = any > = Expression <TSource , any , TParent > | Binding <TSource , any , TParent > | HTMLDirective | CaptureType ;
994994
995995// @public
996996export type TrustedTypesPolicy = {
@@ -1072,7 +1072,7 @@ export class ViewTemplate<TSource = any, TParent = any> implements ElementViewTe
10721072 static create<TSource = any , TParent = any >(strings : string [], values : TemplateValue <TSource , TParent >[], policy ? : DOMPolicy ): ViewTemplate <TSource , TParent >;
10731073 readonly factories: Record <string , ViewBehaviorFactory >;
10741074 readonly html: string | HTMLTemplateElement ;
1075- inline(): CaptureType < TSource , TParent > ;
1075+ inline(): CaptureType ;
10761076 render(source : TSource , host : Node , hostBindingTarget ? : Element ): HTMLView <TSource , TParent >;
10771077 withPolicy(policy : DOMPolicy ): this ;
10781078}
@@ -1081,7 +1081,7 @@ export class ViewTemplate<TSource = any, TParent = any> implements ElementViewTe
10811081export function volatile(target : {}, name : string | Accessor , descriptor : PropertyDescriptor ): PropertyDescriptor ;
10821082
10831083// @public
1084- export function when<TSource = any , TReturn = any , TParent = any >(condition : Expression <TSource , TReturn , TParent > | boolean , templateOrTemplateBinding : SyntheticViewTemplate <TSource , TParent > | Expression <TSource , SyntheticViewTemplate <TSource , TParent >, TParent >, elseTemplateOrTemplateBinding ? : SyntheticViewTemplate <TSource , TParent > | Expression <TSource , SyntheticViewTemplate <TSource , TParent >, TParent >): CaptureType < TSource , TParent > ;
1084+ export function when<TSource = any , TReturn = any , TParent = any >(condition : Expression <TSource , TReturn , TParent > | boolean , templateOrTemplateBinding : SyntheticViewTemplate <TSource , TParent > | Expression <TSource , SyntheticViewTemplate <TSource , TParent >, TParent >, elseTemplateOrTemplateBinding ? : SyntheticViewTemplate <TSource , TParent > | Expression <TSource , SyntheticViewTemplate <TSource , TParent >, TParent >): CaptureType ;
10851085
10861086// Warnings were encountered during analysis:
10871087//
0 commit comments