unknownParameterParameter `{{parameter}}` leaves input unparsed. Accept a named domain type; run the expected schema or parser at the I/O boundary before calling this function.small-rules/no-unknown-parametersDisallow explicitly unknown function parameters except `cause` and the parameter named by a type predicate; decode unknown input at its I/O boundary instead.
Ported from dmmulroy/anti-slop. Unknown input belongs at
the boundary where you can decode it. The sole exception is an explicitly named cause, which
follows the normal error-enrichment convention.
unknownParameterParameter `{{parameter}}` leaves input unparsed. Accept a named domain type; run the expected schema or parser at the I/O boundary before calling this function.This rule does not accept options.
function handle(input: unknown) {}export function isNode(value: unknown): value is ESTree.Node {}