Nabla.TypeScript.Dom 1.0.1

dotnet add package Nabla.TypeScript.Dom --version 1.0.1
NuGet\Install-Package Nabla.TypeScript.Dom -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nabla.TypeScript.Dom" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nabla.TypeScript.Dom --version 1.0.1
#r "nuget: Nabla.TypeScript.Dom, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Nabla.TypeScript.Dom as a Cake Addin
#addin nuget:?package=Nabla.TypeScript.Dom&version=1.0.1

// Install Nabla.TypeScript.Dom as a Cake Tool
#tool nuget:?package=Nabla.TypeScript.Dom&version=1.0.1

This package contains a standalne and self-managed TypeScript DOM system. You can use this package to programatically create a TypeScript file with types you want, and render contents to file system or console.

The following C# code demonstrate basic using of thie DOM.

using Nabla.TypeScript;

namespace Test;

public static class Program {

    public static Main() {
        var module = CreateSharedModule();
        PrintModule(module);
    }

    static TypeFile CreateSharedModule()
    {
        TypeFile module = new("Shared");

        var param = new TypeParameter("T");

        module.Add(TS.Alias("Nullable", TS.Union(param.Reference(), TS.Native.Null(), TS.Native.Undefined())));
        module.Add(TS.Interface("Tuple2", null,
            TS.Property("Item1", TS.Parameter("T1").Reference()),
            TS.Property("Item2", TS.Parameter("T2").Reference(), isOptional: true)));

        return module;
    }

    private static void PrintModule(TypeFile module)
    {
        Console.WriteLine($"/** {module.Name}.ts **/");
        TypeWriter writer = new(Console.Out, new(), false);
        module.Write(writer);
        Console.WriteLine();

    }

}

Above code produces TypeScript code like below.

/* Shared.ts */
export type Nullable<T> = T | null | undefined;

export interface Tuple2<T1, T2> {
    Item1: T1,
    Item2?: T2
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Nabla.TypeScript.Dom:

Package Downloads
Nabla.TypeScript.Tool

This package contains core components for Nablats.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 635 5/4/2022
1.0.0 770 5/2/2022