1
0
mirror of https://github.com/nsnail/spectre.console.git synced 2025-05-11 11:49:31 +08:00
Patrik Svensson 54be64ec84
Add JSON text renderer ()
* Add JsonText widget to render highlighted JSON

Closes 
2022-12-31 18:17:15 +00:00

19 lines
625 B
C#

global using System;
global using System.Collections.Generic;
global using System.Globalization;
global using System.IO;
global using System.Linq;
global using System.Reflection;
global using System.Runtime.CompilerServices;
global using System.Text.RegularExpressions;
global using System.Threading;
global using System.Threading.Tasks;
global using Shouldly;
global using Spectre.Console.Advanced;
global using Spectre.Console.Json;
global using Spectre.Console.Rendering;
global using Spectre.Console.Testing;
global using Spectre.Console.Tests.Data;
global using VerifyTests;
global using VerifyXunit;
global using Xunit;