Skip to content

Commit

Permalink
Update download.ex w/ placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyti authored May 24, 2024
1 parent 45efdcd commit 59b3c09
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion lib/playwright/page/download.ex
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
defmodule Playwright.Page.Download do
defmodule Playwright.Download do
@moduledoc false

# @spec cancel(t()) :: :ok
# def cancel(download)

# @spec create_read_stream(t()) :: readable()
# def create_read_stream(download)

# @spec delete(t()) :: :ok
# def delete(download)

# @spec failure(t()) :: nil | binary()
# def failure(download)

# @spec page(t()) :: Page.t()
# def page(download)

# @spec path(t()) :: binary()
# def path(download)

# @spec save_as(t(), binary()) :: :ok
# def save_as(download, path)

# @spec suggested_filename(t()) :: binary()
# def suggested_filename(download)

# @spec url(t()) :: binary()
# def url(download)

end

0 comments on commit 59b3c09

Please sign in to comment.