Skip to main content
Module

x/froebel/types.ts>IsLength

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

Type Parameters

T extends any[]
N extends number
definition: T extends { length: infer I; } ? I extends N ? true : false : false