Type Alias $Options

$Options: {
    $any?: unknown;
}

🧰 type util

Options for specifically handling the type any.

type YourType<
T,
$Options extends YourType.$Options = YourType.$Default
> = ...

namespace YourType {
export type $Options = $AnyOptions
}