Interface TypedRpcDataEncoder<TSource, TTarget>

interface TypedRpcDataEncoder<TSource, TTarget> {
    decode(value: null | TTarget): null | TSource;
    encode(value: null | TSource): null | TTarget;
}

Type Parameters

  • TSource
  • TTarget

Hierarchy (View Summary)

Implemented by

Methods

Methods