Support for GenericStreamingMessage

This commit is contained in:
Casper Warden
2023-11-09 18:08:56 +00:00
parent 53506ff2cb
commit b71b8d1ec9
12 changed files with 594 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
export abstract class PythonObject
{
public toString(): string
{
return JSON.stringify(this.toJSON());
}
public abstract toJSON(): unknown;
}