A reference to a remote object.
| 381 | |
| 382 | /** A reference to a remote object. */ |
| 383 | interface Ref { |
| 384 | /** Get a reference to a sub-object. */ |
| 385 | get(key: S): Ref |
| 386 | /** Assign value to key. */ |
| 387 | set(key: S, value: any): void |
| 388 | } |
| 389 | |
| 390 | /** The Wave client. */ |
| 391 | export interface Wave { |
nothing calls this directly
no outgoing calls
no test coverage detected