Type Alias $Options

$Options: { $any?: unknown }

🧰 type util

Options for specifically handling the type any.

Type declaration

  • Optional$any?: unknown
type YourType<
T,
$Options extends YourType.$Options = YourType.$Default
> = ...

namespace YourType {
export type $Options = $AnyOptions
}