Actually, the message format is LLSD notation not python (d'oh)

This commit is contained in:
Casper Warden
2023-11-10 14:25:34 +00:00
parent 72d4eff2d8
commit 3c69b8f05e
26 changed files with 792 additions and 682 deletions

View File

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