dothtml-interfaces 0.1.11 → 0.1.12
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 -1
package/package.json
CHANGED
package/src/i-dot.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import IObservable from "./i-observable";
|
|
|
6
6
|
|
|
7
7
|
type DotContentPrimitive = string|number|boolean;
|
|
8
8
|
type DotContentBasic = DotContentPrimitive|Node|Element|NodeList|IComponent|IDotDocument//typeof DotDocument;
|
|
9
|
-
export type DotContent = DotContentBasic|Array<DotContent>|(()=>DotContent);
|
|
9
|
+
export type DotContent = DotContentBasic|Array<DotContent>|IObservable|(()=>DotContent);
|
|
10
10
|
|
|
11
11
|
// Global interface containing elements:
|
|
12
12
|
export interface IDotDocument
|