blazorators icon indicating copy to clipboard operation
blazorators copied to clipboard

This project converts TypeScript type declarations into C# representations, and use C# source generators to expose automatic JavaScript interop functionality.

Results 5 blazorators issues
Sort by recently updated
recently updated
newest added

Create a new project named `TypeScript.SyntaxTreeParser` and manually convert the TypeScript `parser.ts` bits into a C# TypeScript parser (from the compiler itself). - [`parser.ts`](https://github.com/microsoft/TypeScript/blob/main/src/compiler/parser.ts) - [`types.ts`](https://github.com/microsoft/TypeScript/blob/main/src/compiler/types.ts) This library will be...

enhancement

Instead of using a `public partial interface I{Name}Service` with the `JSAutoInterop` or `JSAutoGenericInterop`, allow for an assembly-level attribute. ```csharp [assembly: JSAutoInterop( TypeName = "Storage", Implementation = "window.localStorage", Url = "https://developer.mozilla.org/docs/Web/API/Window/localStorage")]...

enhancement

Maybe we could use `Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing.XUnit` for generator unit testing - - -

Using `invokeMethod` throws the following error - ``` Uncaught Error: The current dispatcher does not support synchronous calls from JS to .NET. Use invokeMethodAsync instead. at y (blazor.server.js:1:1840) at C.invokeMethod...

Your Nuget Package works as a charm when getting a single position, but when I try to enable the watching capabilities I get the following Exception: `System.ArgumentException: There is no...