Skip to content

Commit

Permalink
Omit
Browse files Browse the repository at this point in the history
closes #2257
  • Loading branch information
Fil committed Jan 3, 2025
1 parent 7d18179 commit b870b48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/marks/dot.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ export function dotX(data?: Data, options?: DotXOptions): Dot;
export function dotY(data?: Data, options?: DotYOptions): Dot;

/** Like dot, except that the **symbol** option is set to *circle*. */
export function circle(data?: Data, options?: Exclude<DotOptions, "symbol">): Dot;
export function circle(data?: Data, options?: Omit<DotOptions, "symbol">): Dot;

/** Like dot, except that the **symbol** option is set to *hexagon*. */
export function hexagon(data?: Data, options?: Exclude<DotOptions, "symbol">): Dot;
export function hexagon(data?: Data, options?: Omit<DotOptions, "symbol">): Dot;

/** The dot mark. */
export class Dot extends RenderableMark {}

0 comments on commit b870b48

Please sign in to comment.