mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
8 lines
239 B
C#
8 lines
239 B
C#
using System.Runtime.InteropServices.JavaScript;
|
|
namespace BlazorWebAssembly.Client.JSInteropSamples;
|
|
public partial class NetToJS
|
|
{
|
|
[JSImport("showAlert", "nettojs")]
|
|
internal static partial string ShowAlert(string message);
|
|
}
|