mount-observer 0.0.110 → 0.0.111
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 +5 -1
- package/ts-refs/em-bower/types.d.ts +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mount-observer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.111",
|
|
4
4
|
"description": "Observe and act on css matches.",
|
|
5
5
|
"main": "MountObserver.js",
|
|
6
6
|
"module": "MountObserver.js",
|
|
@@ -41,6 +41,10 @@
|
|
|
41
41
|
"default": "./doCleanup.js",
|
|
42
42
|
"types": "./doCleanup.ts"
|
|
43
43
|
},
|
|
44
|
+
"./upShadowSearch.js": {
|
|
45
|
+
"default": "./upShadowSearch.js",
|
|
46
|
+
"types": "./upShadowSearch.ts"
|
|
47
|
+
},
|
|
44
48
|
"./waitForEvent.js": {
|
|
45
49
|
"default": "./waitForEvent.js",
|
|
46
50
|
"types": "./waitForEvent.ts"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {IEnhancement, BEAllProps, EMC} from '../trans-render/be/types';
|
|
2
|
+
|
|
3
|
+
export interface EndUserProps extends IEnhancement{
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export interface AllProps extends EndUserProps{
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export type AP = AllProps;
|
|
10
|
+
|
|
11
|
+
export type PAP = Partial<AP>;
|
|
12
|
+
|
|
13
|
+
export type ProPAP = Promise<PAP>;
|
|
14
|
+
|
|
15
|
+
export type BAP = AP & BEAllProps;
|
|
16
|
+
|
|
17
|
+
export interface Actions{
|
|
18
|
+
}
|