Handling Empty Fields in TypeScript TaggedRequest
is there a type i can add to this TaggedRequest to say no fields are provided/required? It requires some kind of value and it doesn't accept S.undefined...
export class LogoutRequest extends S.TaggedRequest<LogoutRequest>()(
"LogoutRequest",
S.never,
S.void,
// what to put here to say theres no args??
) {}