File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,10 +138,10 @@ export function dotX(data?: Data, options?: DotXOptions): Dot;
138
138
export function dotY ( data ?: Data , options ?: DotYOptions ) : Dot ;
139
139
140
140
/** Like dot, except that the **symbol** option is set to *circle*. */
141
- export function circle ( data ?: Data , options ?: Exclude < DotOptions , "symbol" > ) : Dot ;
141
+ export function circle ( data ?: Data , options ?: Omit < DotOptions , "symbol" > ) : Dot ;
142
142
143
143
/** Like dot, except that the **symbol** option is set to *hexagon*. */
144
- export function hexagon ( data ?: Data , options ?: Exclude < DotOptions , "symbol" > ) : Dot ;
144
+ export function hexagon ( data ?: Data , options ?: Omit < DotOptions , "symbol" > ) : Dot ;
145
145
146
146
/** The dot mark. */
147
147
export class Dot extends RenderableMark { }
You can’t perform that action at this time.
0 commit comments