Interface Call<A, R>

Interface for the invocation of remote procedures.

interface Call<A, R> {
    get: (() => undefined | R);
    invoke: ((args: A) => undefined | R);
    set: ((value: A) => void);
}

Type Parameters

  • A
  • R

Hierarchy (view full)

Properties

Properties

get: (() => undefined | R)
invoke: ((args: A) => undefined | R)
set: ((value: A) => void)