-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
defmodule Playwright.Page.Mouse do | ||
defmodule Playwright.Mouse do | ||
@moduledoc false | ||
|
||
# @spec click(t(), number(), number(), options()) :: :ok | ||
# def click(page, x, y, options \\ %{}) | ||
# def click(mouse, x, y, options \\ %{}) | ||
|
||
# @spec dblclick(t(), number(), number(), options()) :: :ok | ||
# def dblclick(page, x, y, options \\ %{}) | ||
# def dblclick(mouse, x, y, options \\ %{}) | ||
|
||
# @spec down(t(), options()) :: :ok | ||
# def down(page, options \\ %{}) | ||
# def down(mouse, options \\ %{}) | ||
|
||
# @spec move(t(), number(), number(), options()) :: :ok | ||
# def move(page, x, y, options \\ %{}) | ||
# def move(mouse, x, y, options \\ %{}) | ||
|
||
# @spec up(t(), options()) :: :ok | ||
# def up(page, options \\ %{}) | ||
# def up(mouse, options \\ %{}) | ||
|
||
# @spec wheel(t(), number(), number()) :: :ok | ||
# def wheel(page, delta_x, delta_y) | ||
# def wheel(mouse, delta_x, delta_y) | ||
|
||
end |