clientnode 3.0.855 → 3.0.856
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/readme.md +3 -1
- package/type.d.ts +1 -6
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -7,7 +7,7 @@ License
|
|
|
7
7
|
-------
|
|
8
8
|
|
|
9
9
|
This library written by Torben Sickert stand under a creative commons naming
|
|
10
|
-
3.0 unported license.
|
|
10
|
+
3.0 unported license. See https://creativecommons.org/licenses/by/3.0/deed.de
|
|
11
11
|
endregion -->
|
|
12
12
|
|
|
13
13
|
Project status
|
|
@@ -24,9 +24,11 @@ Project status
|
|
|
24
24
|
|
|
25
25
|
[](https://coveralls.io/github/thaibault/clientnode)
|
|
26
26
|
|
|
27
|
+
<!-- Too unstable yet
|
|
27
28
|
[](https://david-dm.org/thaibault/clientnode)
|
|
28
29
|
[](https://david-dm.org/thaibault/clientnode?type=dev)
|
|
29
30
|
[](https://david-dm.org/thaibault/clientnode?type=peer)
|
|
31
|
+
-->
|
|
30
32
|
[](https://torben.website/clientnode)
|
|
31
33
|
|
|
32
34
|
<!--|deDE:Einsatz-->
|
package/type.d.ts
CHANGED
|
@@ -190,14 +190,9 @@ export interface BoundToolsFunction<TElement = HTMLElement> {
|
|
|
190
190
|
(_methodName: 'normalizedStyles'): BoundTools<TElement>;
|
|
191
191
|
(_methodName: 'removeDirective', _directiveName: string): $T<TElement>;
|
|
192
192
|
(_methodName: 'style'): Mapping<number | string>;
|
|
193
|
+
(_methodName: 'text'): string;
|
|
193
194
|
(..._parameters: Array<unknown>): BoundTools<TElement>;
|
|
194
195
|
}
|
|
195
|
-
export interface StaticScope {
|
|
196
|
-
document?: Document;
|
|
197
|
-
global: $Global;
|
|
198
|
-
location?: Location;
|
|
199
|
-
Tools: ToolsFunction;
|
|
200
|
-
}
|
|
201
196
|
declare global {
|
|
202
197
|
interface JQuery<TElement = HTMLElement> {
|
|
203
198
|
Tools: BoundToolsFunction<TElement>;
|