Used for communication to and from Squirrel
export class SquirrelMessage { name: string; id?: string; value: any; constructor(id: string | null, name: string | null, value: string | null | any[]) { if (id != null) { this.id = id; } if (name != null) { this.name = name; } if (value != null) { this.value = value; } } }
Last updated 2 years ago
Was this helpful?