dothtml-interfaces 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/i-component.d.ts +1 -2
- package/src/i-dot.d.ts +0 -12
package/package.json
CHANGED
package/src/i-component.d.ts
CHANGED
package/src/i-dot.d.ts
CHANGED
|
@@ -244,18 +244,6 @@ export interface IDotCore extends IDotDocument
|
|
|
244
244
|
|
|
245
245
|
component<T extends {new(...args: any[]): (IComponent)}>(ComponentClass: T): T&{new(...args: any[]): ({$: FrameworkItems})};
|
|
246
246
|
|
|
247
|
-
/**
|
|
248
|
-
* DOThtml's component factory. Use it to create component classes.
|
|
249
|
-
*/
|
|
250
|
-
component(callback: (
|
|
251
|
-
({
|
|
252
|
-
html: IDotDocument,
|
|
253
|
-
css: IDotCss,
|
|
254
|
-
$: IComponentInternal
|
|
255
|
-
})=>new (...args: any[])=>IComponent
|
|
256
|
-
)): (new (...args: any[]) => IComponent);
|
|
257
|
-
// component(component: typeof Component): void;
|
|
258
|
-
// removeComponent = removeComponent;
|
|
259
247
|
}
|
|
260
248
|
|
|
261
249
|
/**
|