dothtml-interfaces 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/i-dot.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dothtml-interfaces",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Dependency injection interfaces for DOTHtml.",
5
5
  "main": "src/index.d.ts",
6
6
  "types": "src/index.d.ts",
package/src/i-dot.d.ts CHANGED
@@ -11,7 +11,7 @@ export type DotContent = DotContentBasic|Array<DotContent>|(()=>DotContent);
11
11
  export interface IDotDocument
12
12
  {
13
13
  // Creating a blank DotDocument.
14
- (document?: Element, classPrefix?: number): void;
14
+ (document?: Element, classPrefix?: number, targetWindow?: Window&(typeof globalThis)): void;
15
15
 
16
16
  // Internal use only:
17
17
  _appendOrCreateDocument(content: DotContent, parentEl?: Element, beforeNode?: Node|number);