mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
408 B
C#
13 lines
408 B
C#
using Microsoft.JSInterop;
|
|
|
|
namespace Wabbajack.App.Blazor.Utility;
|
|
|
|
public static class JsInterop
|
|
{
|
|
/// <summary>
|
|
/// Converts a <see cref="DotNetStreamReference"/> into a blob URL. Useful for streaming images.
|
|
/// <code>async function getBlobUrlFromStream(imageStream: DotNetStreamReference)</code>
|
|
/// </summary>
|
|
public const string GetBlobUrlFromStream = "getBlobUrlFromStream";
|
|
}
|