metadata-detector-worker 5.0.0 → 5.0.1
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/build/es2019/module.d.ts +1 -0
- package/build/es2019/module.d.ts.map +1 -1
- package/build/es2019/module.js +1 -0
- package/build/es2019/module.js.map +1 -1
- package/build/es2019/types/index.d.ts +2 -0
- package/build/es2019/types/index.d.ts.map +1 -0
- package/build/es2019/types/index.js +2 -0
- package/build/es2019/types/index.js.map +1 -0
- package/build/es2019/types/metadata-detector-worker-definition.d.ts +4 -0
- package/build/es2019/types/metadata-detector-worker-definition.d.ts.map +1 -0
- package/build/es2019/types/metadata-detector-worker-definition.js +2 -0
- package/build/es2019/types/metadata-detector-worker-definition.js.map +1 -0
- package/package.json +1 -1
- package/src/module.ts +1 -0
- package/src/types/index.ts +1 -0
- package/src/types/metadata-detector-worker-definition.ts +4 -0
package/build/es2019/module.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/module.ts"],"names":[],"mappings":"AASA,cAAc,oBAAoB,CAAC"}
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/module.ts"],"names":[],"mappings":"AASA,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC"}
|
package/build/es2019/module.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../src/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAGxC;;;GAGG;AACH,cAAc,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../src/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAGxC;;;GAGG;AACH,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAE9B,YAAY,CAA0C,IAAI,EAAkE;IACxH,MAAM,EAAE,CAAC,EAAE,WAAW,EAAE,EAAE,EAAE;QACxB,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,WAAW,CAAC,EAAE,CAAC;IAC3C,CAAC;IACD,KAAK,EAAE,CAAC,EAAE,WAAW,EAAE,EAAE,EAAE;QACvB,MAAM,mBAAmB,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC;QAE/C,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,aAAa,EAAE,CAAC,mBAAmB,CAAC,EAAE,CAAC;IACjF,CAAC;CACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { TWorkerDefinition } from 'worker-factory';
|
|
2
|
+
import { IMetadataDetectorWorkerCustomDefinition } from '../interfaces';
|
|
3
|
+
export type TMetadataDetectorWorkerDefinition = TWorkerDefinition<IMetadataDetectorWorkerCustomDefinition>;
|
|
4
|
+
//# sourceMappingURL=metadata-detector-worker-definition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metadata-detector-worker-definition.d.ts","sourceRoot":"","sources":["../../../src/types/metadata-detector-worker-definition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,uCAAuC,EAAE,MAAM,eAAe,CAAC;AAExE,MAAM,MAAM,iCAAiC,GAAG,iBAAiB,CAAC,uCAAuC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metadata-detector-worker-definition.js","sourceRoot":"","sources":["../../../src/types/metadata-detector-worker-definition.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
package/src/module.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { IMetadataDetectorWorkerCustomDefinition } from './interfaces';
|
|
|
8
8
|
* isolatedModules compiler option.
|
|
9
9
|
*/
|
|
10
10
|
export * from './interfaces/index';
|
|
11
|
+
export * from './types/index';
|
|
11
12
|
|
|
12
13
|
createWorker<IMetadataDetectorWorkerCustomDefinition>(self, <TWorkerImplementation<IMetadataDetectorWorkerCustomDefinition>>{
|
|
13
14
|
locate: ({ arrayBuffer }) => {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './metadata-detector-worker-definition';
|