Type alias TableCodecClass

TableCodecClass: (abstract new (...args) => {
    [$SerializeForTable]: ((ctx) => ReturnType<SerDesFn<any>>);
}) & {
    [$DeserializeForTable]: SerDesFn<TableDesCtx>;
}

Type declaration

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

      Parameters

      • Rest ...args: any[]

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

Type declaration