@xylabs/static-implements 2.11.0 → 2.11.2
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/index.js +5 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -11
- package/dist/index.mjs.map +1 -1
- package/dist/staticImplements.d.mts +7 -0
- package/dist/staticImplements.d.mts.map +1 -0
- package/dist/staticImplements.js +14 -0
- package/dist/staticImplements.js.map +1 -0
- package/dist/staticImplements.mjs +12 -0
- package/dist/staticImplements.mjs.map +1 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
function staticImplements() {
|
|
9
|
-
return (constructor) => {
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
exports.staticImplements = staticImplements;
|
|
3
|
+
var staticImplements = require('./staticImplements.js');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
exports.staticImplements = staticImplements.staticImplements;
|
|
14
8
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
package/dist/index.mjs
CHANGED
|
@@ -1,12 +1,2 @@
|
|
|
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
|
-
function staticImplements() {
|
|
7
|
-
return (constructor) => {
|
|
8
|
-
};
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export { staticImplements };
|
|
1
|
+
export { staticImplements } from './staticImplements.mjs';
|
|
12
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
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
|
+
export declare function staticImplements<T>(): <U extends T>(constructor: U) => void;
|
|
7
|
+
//# sourceMappingURL=staticImplements.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"staticImplements.d.ts","sourceRoot":"","sources":["../src/staticImplements.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,2CAIjC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Annotation to decorate classes which implement static methods
|
|
5
|
+
* @returns The decorated class requiring it to implement
|
|
6
|
+
* the members of the the type as static properties/methods
|
|
7
|
+
*/
|
|
8
|
+
function staticImplements() {
|
|
9
|
+
return (constructor) => {
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
exports.staticImplements = staticImplements;
|
|
14
|
+
//# sourceMappingURL=staticImplements.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"staticImplements.js","sources":["../src/staticImplements.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAAA;;;;AAIG;AACa,SAAA,gBAAA,GAAA;;;;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
function staticImplements() {
|
|
7
|
+
return (constructor) => {
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export { staticImplements };
|
|
12
|
+
//# sourceMappingURL=staticImplements.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"staticImplements.mjs","sources":["../src/staticImplements.ts"],"sourcesContent":[null],"names":[],"mappings":"AAAA;;;;AAIG;AACa,SAAA,gBAAA,GAAA;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"esm"
|
|
49
49
|
],
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@xylabs/ts-scripts-yarn3": "^3.0.0-rc.
|
|
52
|
-
"@xylabs/tsconfig": "^3.0.0-rc.
|
|
51
|
+
"@xylabs/ts-scripts-yarn3": "^3.0.0-rc.27",
|
|
52
|
+
"@xylabs/tsconfig": "^3.0.0-rc.27",
|
|
53
53
|
"@xylabs/tsconfig-jest": "~2.19.12",
|
|
54
54
|
"typescript": "^5.2.2"
|
|
55
55
|
},
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"url": "https://github.com/xylabs/sdk-js.git"
|
|
62
62
|
},
|
|
63
63
|
"sideEffects": false,
|
|
64
|
-
"version": "2.11.
|
|
64
|
+
"version": "2.11.2"
|
|
65
65
|
}
|