We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e10e99 commit 63f9648Copy full SHA for 63f9648
types/index.d.ts
@@ -11,8 +11,8 @@ declare namespace hybrids {
11
get?(host: E & HTMLElement, lastValue: V | undefined): V;
12
set?(host: E & HTMLElement, value: any, lastValue: V | undefined): V;
13
connect?(
14
- host: E & HTMLElement & { [property in keyof E]: V },
15
- key: keyof E,
+ host: E & HTMLElement & { __property_key__: V },
+ key: "__property_key__",
16
invalidate: (options?: InvalidateOptions) => void,
17
): Function | void;
18
observe?(host: E & HTMLElement, value: V, lastValue: V): void;
0 commit comments