Skip to content

ArgsType

ArgsType<T> = T extends readonly [infer U] ? U : T extends readonly [] ? null : T

Defined in: types/reactor.ts:80

Helper to extract arguments type for codecs (unwraps single argument tuples).

T