apache-js-workers
Advanced tools
Comparing version 0.0.6 to 0.0.7
14
index.ts
@@ -5,3 +5,3 @@ import { workerData, parentPort } from 'worker_threads' | ||
body: ObjectOf<any> | ||
files: Files | ||
files: File[] | ||
hostname: string | ||
@@ -15,9 +15,7 @@ ip: string | ||
interface Files { | ||
[fileName: string]: { | ||
name: string | ||
data: string | ||
size: number | ||
type: string | ||
} | ||
interface File { | ||
name: string | ||
data: string | ||
size: number | ||
type: string | ||
} | ||
@@ -24,0 +22,0 @@ |
{ | ||
"name": "apache-js-workers", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1721
69