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;
138138export function dotY ( data ?: Data , options ?: DotYOptions ) : Dot ;
139139
140140/** 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 ;
142142
143143/** 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 ;
145145
146146/** The dot mark. */
147147export class Dot extends RenderableMark { }
You can’t perform that action at this time.
0 commit comments