From dc4a5118d662b3a1109b8f889879f4b30395d21d Mon Sep 17 00:00:00 2001 From: Gavin Chen <chenrui920614@gmail.com> Date: Fri, 10 Nov 2023 15:07:32 +0800 Subject: [PATCH] fix(mark): delete ava type (#5782) Co-authored-by: chenrui <chenrui.92@bytedance.com> --- src/spec/mark.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/spec/mark.ts b/src/spec/mark.ts index bc0118e96d..aef3554d10 100644 --- a/src/spec/mark.ts +++ b/src/spec/mark.ts @@ -1,4 +1,3 @@ -import type { AdviseParams } from '@antv/ava'; import { MarkComponent } from '../runtime'; import { Encode } from './encode'; import { Transform } from './transform'; @@ -19,7 +18,6 @@ import { import { Closeable, Literal2Object, Padding } from './utils'; export type Mark = - | AutoMark | IntervalMark | RectMark | LineMark @@ -394,4 +392,3 @@ export type HeatmapMark = BaseMark<'heatmap'>; export type LiquidMark = BaseMark<'liquid'>; export type CustomMark = BaseMark<MarkComponent, ChannelTypes>; -export type AutoMark = BaseMark<'auto'> & AdviseParams;