novx
    Preparing search index...

    Interface TypeSerialization<S, T>

    A TypeSerialization covers the necessary transformation logic in order to serialize and deserialize objects suitable for http calls

    interface TypeSerialization<S, T> {
        deserialize(format: string, value: T): S;
        serialize(format: string, value: S): T;
    }

    Type Parameters

    • S

      the object type within the application

    • T

      the object type in the "transport" representation

    Implemented by

    Index

    Methods