Skip to content

Commit 14d6e43

Browse files
authored
Omit (#2266)
closes #2257
1 parent 164fb66 commit 14d6e43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/marks/dot.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ export function dotX(data?: Data, options?: DotXOptions): Dot;
138138
export 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. */
147147
export class Dot extends RenderableMark {}

0 commit comments

Comments
 (0)