worker-factory
Advanced tools
Comparing version 2.1.7 to 2.2.0
@@ -10,2 +10,3 @@ export * from './broker-event'; | ||
export * from './request'; | ||
export * from './value-array'; | ||
export * from './value-map'; | ||
@@ -12,0 +13,0 @@ export * from './worker-definition'; |
import { TValue } from '../types'; | ||
export interface IValueMap { | ||
[key: string]: TValue | TValue[] | TValue[][]; | ||
[key: string]: TValue; | ||
} |
import { TValue } from '../types'; | ||
export interface IWorkerResultMessage { | ||
id: null | number; | ||
result: TValue | TValue[] | TValue[][]; | ||
result: TValue; | ||
} |
@@ -1,3 +0,3 @@ | ||
import { IValueMap } from '../interfaces'; | ||
import { IValueArray, IValueMap } from '../interfaces'; | ||
import { TTransferable } from './transferable'; | ||
export declare type TValue = boolean | null | number | string | TTransferable | IValueMap; | ||
export declare type TValue = boolean | null | number | string | TTransferable | IValueArray | IValueMap; |
@@ -75,3 +75,3 @@ { | ||
"types": "build/es2015/module.d.ts", | ||
"version": "2.1.7" | ||
"version": "2.2.0" | ||
} |
@@ -10,2 +10,3 @@ export * from './broker-event'; | ||
export * from './request'; | ||
export * from './value-array'; | ||
export * from './value-map'; | ||
@@ -12,0 +13,0 @@ export * from './worker-definition'; |
@@ -5,4 +5,4 @@ import { TValue } from '../types'; | ||
[ key: string ]: TValue | TValue[] | TValue[][]; | ||
[ key: string ]: TValue; | ||
} |
@@ -7,4 +7,4 @@ import { TValue } from '../types'; | ||
result: TValue | TValue[] | TValue[][]; | ||
result: TValue; | ||
} |
@@ -1,4 +0,4 @@ | ||
import { IValueMap } from '../interfaces'; | ||
import { IValueArray, IValueMap } from '../interfaces'; | ||
import { TTransferable } from './transferable'; | ||
export type TValue = boolean | null | number | string | TTransferable | IValueMap; | ||
export type TValue = boolean | null | number | string | TTransferable | IValueArray | IValueMap; |
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
78595
167
727