@@ -15,8 +15,8 @@ export declare function bind<T extends Element>(element: T): BoundTemplateFuncti
15
15
16
16
export declare function define ( intent : string , callback : Function ) : void ;
17
17
18
- export declare function wire ( obj ?: object | null , type ?: 'html' | 'svg' ) : WiredTemplateFunction ;
19
- export declare function wire ( obj ?: object | null , type_id ?: string ) : WiredTemplateFunction ;
18
+ export declare function wire ( identity ?: object | null , type ?: 'html' | 'svg' ) : WiredTemplateFunction ;
19
+ export declare function wire ( identity ?: object | null , type_id ?: string ) : WiredTemplateFunction ;
20
20
21
21
export declare const hyper : {
22
22
Component : typeof Component ;
@@ -26,7 +26,7 @@ export declare const hyper: {
26
26
wire : typeof wire ;
27
27
28
28
// hyper(null, 'html')`HTML`
29
- ( obj : null | undefined , type ?: 'html' | 'svg' ) : WiredTemplateFunction ;
29
+ ( identity : null | undefined , type ?: 'html' | 'svg' ) : WiredTemplateFunction ;
30
30
31
31
// hyper('html')`HTML`
32
32
( type : 'html' | 'svg' ) : WiredTemplateFunction ;
@@ -39,8 +39,8 @@ export declare const hyper: {
39
39
40
40
// hyper(obj, 'html:id')`HTML`
41
41
// hyper(obj)`HTML`
42
- ( obj : object , type ?: 'html' | 'svg' ) : WiredTemplateFunction ;
43
- ( obj : object , type_id ?: string ) : WiredTemplateFunction ;
42
+ ( identity : object , type ?: 'html' | 'svg' ) : WiredTemplateFunction ;
43
+ ( identity : object , type_id ?: string ) : WiredTemplateFunction ;
44
44
45
45
// hyper()`HTML`
46
46
( ) : WiredTemplateFunction ;
0 commit comments