vega-typings
Advanced tools
Comparing version 0.15.1 to 0.15.2
{ | ||
"name": "vega-typings", | ||
"version": "0.15.1", | ||
"version": "0.15.2", | ||
"description": "Typings for Vega.", | ||
@@ -5,0 +5,0 @@ "types": "types", |
@@ -32,6 +32,2 @@ import { | ||
export type ExcludeValueRefKeepSignal<T> = | ||
| Exclude<T, ScaledValueRef<any> | NumericValueRef | ColorValueRef> | ||
| KeepSignal<T>; | ||
export type KeepSignal<T> = T extends SignalRef ? SignalRef : never; | ||
@@ -43,3 +39,5 @@ | ||
export type ExcludeMappedValueRef<T> = { | ||
[P in keyof T]: ExcludeValueRefKeepSignal<T[P]>; | ||
[P in keyof T]: | ||
| Exclude<T[P], ScaledValueRef<any> | NumericValueRef | ColorValueRef> | ||
| KeepSignal<T[P]>; | ||
}; | ||
@@ -46,0 +44,0 @@ |
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
119917
4115