mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
21 lines
607 B
C#
21 lines
607 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntBlazor
|
|
{
|
|
public static class JSInteropConstants
|
|
{
|
|
public const string FUNC_PREFIX = "antBlazor.interop.";
|
|
|
|
public static string getDomInfo => $"{FUNC_PREFIX}getDomInfo";
|
|
|
|
public static string getBoundingClientRect => $"{FUNC_PREFIX}getBoundingClientRect";
|
|
|
|
public static string addDomEventListener => $"{FUNC_PREFIX}addDomEventListener";
|
|
|
|
public static string antMatchMedia => $"{FUNC_PREFIX}antMatchMedia";
|
|
|
|
public static string copy => $"{FUNC_PREFIX}copy";
|
|
}
|
|
} |