Actually, the message format is LLSD notation not python (d'oh)
This commit is contained in:
9
lib/classes/llsd/LLSDObject.ts
Normal file
9
lib/classes/llsd/LLSDObject.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export abstract class LLSDObject
|
||||
{
|
||||
public toString(): string
|
||||
{
|
||||
return JSON.stringify(this.toJSON());
|
||||
}
|
||||
|
||||
public abstract toJSON(): unknown;
|
||||
}
|
||||
Reference in New Issue
Block a user