Skip to main content
Module

x/froebel/types.ts>Extends

A strictly typed utility library.
Go to Latest
type alias Extends
import { type Extends } from "https://deno.land/x/froebel@v0.23.0/types.ts";

Equivalent to A extends B ? true : false

definition: IfElse<IsUnion<A>, [A] extends [B] ? true : false, A extends B ? true : false>