interface CanvasDrawPath {
    beginPath(): void;
    clip(fillRule?): void;
    clip(path, fillRule?): void;
    fill(fillRule?): void;
    fill(path, fillRule?): void;
    isPointInPath(x, y, fillRule?): boolean;
    isPointInPath(path, x, y, fillRule?): boolean;
    isPointInStroke(x, y): boolean;
    isPointInStroke(path, x, y): boolean;
    stroke(): void;
    stroke(path): void;
}

Hierarchy (view full)

Methods

  • Returns void

  • Parameters

    Returns void

  • Parameters

    Returns void

  • Parameters

    Returns void

  • Parameters

    Returns void

  • Parameters

    Returns boolean

  • Parameters

    Returns boolean

  • Parameters

    • x: number
    • y: number

    Returns boolean

  • Parameters

    • path: Path2D
    • x: number
    • y: number

    Returns boolean

  • Returns void

  • Parameters

    Returns void

Generated using TypeDoc