| File: AttributeData.cs | Web Access |
| Project: src\runtime\src\libraries\System.Runtime.InteropServices.JavaScript\gen\JSImportGenerator\JSImportGenerator.csproj (Microsoft.Interop.JavaScript.JSImportGenerator) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.Interop.JavaScript { /// <summary> /// JSImportAttribute data /// </summary> /// <remarks> /// The names of these members map directly to those on the /// JSImportAttribute and should not be changed. /// </remarks> internal sealed record JSImportData(string FunctionName, string? ModuleName) { } /// <summary> /// JSExportAttribute data /// </summary> /// <remarks> /// The names of these members map directly to those on the /// JSExportAttribute and should not be changed. /// </remarks> internal sealed record JSExportData() { } }