From 714374c798fb0c7a74c8fc4053706c217ce1afd6 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 11 May 2023 15:25:11 -0500 Subject: [PATCH] added method in protocol Signed-off-by: Matt Bruce --- VDS/Components/Tooltip/TooltipLaunchable.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/VDS/Components/Tooltip/TooltipLaunchable.swift b/VDS/Components/Tooltip/TooltipLaunchable.swift index 6a79e987..5f8219b7 100644 --- a/VDS/Components/Tooltip/TooltipLaunchable.swift +++ b/VDS/Components/Tooltip/TooltipLaunchable.swift @@ -8,7 +8,9 @@ import Foundation import UIKit -public protocol TooltipLaunchable { } +public protocol TooltipLaunchable { + func presentTooltip(surface: Surface, title: String, content: String, closeButtonText: String) +} extension TooltipLaunchable { public func presentTooltip(surface: Surface, title: String, content: String, closeButtonText: String = "Close") {