UNPKG

yimultiscreenserver-sdk-web

Version:

YiMultiScreenServer SDK for Web

18 lines (15 loc) 351 B
export class EmptyResponse { empty: string; constructor() { this.empty = ""; } equals(o: any): boolean { return o instanceof EmptyResponse && this.empty === o.empty; } toString(): string { return `EmptyResponse{` + `empty='${this.empty}'` + `}`; } }