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; -export type AutoMark = BaseMark<'auto'> & AdviseParams;