Skip to content

Commit

Permalink
fix: Remove <null> from Value to fix TopLevelSpec consumed by code us…
Browse files Browse the repository at this point in the history
…ing strict mode. (#7352)
  • Loading branch information
walterra committed Apr 6, 2021
1 parent 70bbf79 commit 9de2b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vega.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export function isSignalRef(o: any): o is SignalRef {

// TODO: add type of value (Make it VgValueRef<V extends ValueOrGradient> {value?:V ...})
export interface VgValueRef {
value?: Value<null>;
value?: Value;
field?:
| string
| {
Expand Down

0 comments on commit 9de2b42

Please sign in to comment.