Type alias CollectionCodecClass

CollectionCodecClass: (abstract new (...args) => {
    [$SerializeForCollection]: ((ctx) => ReturnType<SerDesFn<any>>);
}) & {
    [$DeserializeForCollection]: SerDesFn<CollectionDesCtx>;
}

Type declaration

    • abstract new (...args): {
          [$SerializeForCollection]: ((ctx) => ReturnType<SerDesFn<any>>);
      }
    • Abstract

      Parameters

      • Rest ...args: any[]

      Returns {
          [$SerializeForCollection]: ((ctx) => ReturnType<SerDesFn<any>>);
      }

Type declaration