S.standardSchemaV1(
S.UndefinedOr(S.NonNegativeInt).pipe(
S.transform(S.NonNegativeInt, {
strict: true,
decode: (input) => input ?? 10,
encode: (output) => output,
}),
)
S.standardSchemaV1(
S.UndefinedOr(S.NonNegativeInt).pipe(
S.transform(S.NonNegativeInt, {
strict: true,
decode: (input) => input ?? 10,
encode: (output) => output,
}),
)