10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
|
|
export abstract class PythonObject
|
||
|
|
{
|
||
|
|
public toString(): string
|
||
|
|
{
|
||
|
|
return JSON.stringify(this.toJSON());
|
||
|
|
}
|
||
|
|
|
||
|
|
public abstract toJSON(): unknown;
|
||
|
|
}
|