@nubjs/types 0.1.13 → 0.2.0

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.
Files changed (2) hide show
  1. package/index.d.ts +1 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -99,6 +99,7 @@ interface WorkerOptions {
99
99
  credentials?: "omit" | "same-origin" | "include";
100
100
  }
101
101
  interface __NubWorker extends EventTarget {
102
+ readonly name: string;
102
103
  postMessage(message: any, transfer?: readonly (ArrayBuffer | MessagePort)[]): void;
103
104
  terminate(): void;
104
105
  onmessage: ((this: Worker, ev: MessageEvent) => any) | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nubjs/types",
3
- "version": "0.1.13",
3
+ "version": "0.2.0",
4
4
  "description": "TypeScript ambient declarations for code authored against the Nub runtime",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/nubjs/nub",