Skip to content

Commit

Permalink
making debug info serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar committed Sep 29, 2020
1 parent a9d28d7 commit 7bbb98d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import { ExpressionTypeDefinition, ExpressionValueBoxed } from '../types';
import { ExpressionValueRender } from './render';
import { getType } from '../get_type';
import { SerializableState } from '../../../../kibana_utils/common';

const name = 'error';

Expand All @@ -30,9 +31,9 @@ export type ExpressionValueError = ExpressionValueBoxed<
message: string;
name?: string;
stack?: string;
original?: Error;
original?: SerializableState;
};
info?: unknown;
info?: SerializableState;
}
>;

Expand Down

0 comments on commit 7bbb98d

Please sign in to comment.