dothtml-interfaces 0.4.5 → 0.4.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-dot.d.ts +1 -0
package/package.json
CHANGED
package/src/i-dot.d.ts
CHANGED
|
@@ -381,6 +381,7 @@ export interface IDotCore extends IDotDocument {
|
|
|
381
381
|
window: IDotWindowBuilder;
|
|
382
382
|
|
|
383
383
|
watch<Ti = IReactive | Array<any> | { [key: string | number]: any } | string | number | boolean>(initValue?: Ti, key?: (Ti extends Array<any> | { [key: string | number]: any } ? string : never)): IWatcher<Ti>;
|
|
384
|
+
ref(): IRef;
|
|
384
385
|
|
|
385
386
|
// Keep these around for a bit to show how it was done before in case I need to change anything prior to the v6 launch.
|
|
386
387
|
// component<T extends IComponent>(Base: new (...args: Parameters<T['build']>) => T): new (...args: Parameters<T['build']>) => T;
|