From 59b3c09b8a75e5195f16df2205c70b0c2e09bef9 Mon Sep 17 00:00:00 2001 From: Corey Innis Date: Fri, 24 May 2024 15:46:16 -0700 Subject: [PATCH] Update download.ex w/ placeholders --- lib/playwright/page/download.ex | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/lib/playwright/page/download.ex b/lib/playwright/page/download.ex index 07b0106c..5ac99516 100644 --- a/lib/playwright/page/download.ex +++ b/lib/playwright/page/download.ex @@ -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