Interface DataServiceOptions<T>

interface DataServiceOptions<T> {
    deserialize?: ((obj) => T);
    serialize?: ((obj) => any);
    uid?: string;
}

Type Parameters

  • T = any

Hierarchy (view full)

Properties

deserialize?: ((obj) => T)

Type declaration

    • (obj): T
    • Parameters

      • obj: any

      Returns T

serialize?: ((obj) => any)

Type declaration

    • (obj): any
    • Parameters

      • obj: T

      Returns any

uid?: string