superjson.registerCustom(
{
deserialize: (test) => {
return null;
},
serialize: (test) => {
return null;
},
isApplicable: (val: unknown) => {
return val instanceof Test
},
},
"Test",
);
superjson.registerCustom(
{
deserialize: (test) => {
return null;
},
serialize: (test) => {
return null;
},
isApplicable: (val: unknown) => {
return val instanceof Test
},
},
"Test",
);