@xylabs/static-implements 4.13.4 → 4.13.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/dist/neutral/index.d.ts +8 -8
- package/package.json +4 -4
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Annotation to decorate classes which implement static methods
|
|
3
|
-
* @returns The decorated class requiring it to implement
|
|
4
|
-
* the members of the the type as static properties/methods
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export { }
|
|
1
|
+
/**
|
|
2
|
+
* Annotation to decorate classes which implement static methods
|
|
3
|
+
* @returns The decorated class requiring it to implement
|
|
4
|
+
* the members of the the type as static properties/methods
|
|
5
|
+
*/
|
|
6
|
+
declare function staticImplements<T>(): <U extends T>(constructor: U) => void;
|
|
7
|
+
|
|
8
|
+
export { staticImplements };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/static-implements",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.6",
|
|
4
4
|
"description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"static",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"module": "./dist/neutral/index.mjs",
|
|
38
38
|
"types": "./dist/neutral/index.d.ts",
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
41
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
42
|
-
"@xylabs/vitest-extended": "^4.13.
|
|
40
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.8",
|
|
41
|
+
"@xylabs/tsconfig": "^7.0.0-rc.8",
|
|
42
|
+
"@xylabs/vitest-extended": "^4.13.6",
|
|
43
43
|
"tslib": "^2.8.1",
|
|
44
44
|
"typescript": "^5.8.3",
|
|
45
45
|
"vitest": "^3.2.4"
|