mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
12 lines
354 B
C#
12 lines
354 B
C#
using Microsoft.JSInterop;
|
|
|
|
namespace Lantean.QBTMudBlade.Interop
|
|
{
|
|
public static class InteropHelper
|
|
{
|
|
public static async Task<BoundingClientRect?> GetBoundingClientRect(this IJSRuntime runtime, string id)
|
|
{
|
|
return await runtime.InvokeAsync<BoundingClientRect?>("qbt.getBoundingClientRect", id);
|
|
}
|
|
}
|
|
} |