Skip to main content
Module

x/fae/mod.ts>InferType

A functional module for Deno inspired from Ramda.
Latest
type alias InferType
import { type InferType } from "https://deno.land/x/fae@v1.1.1/mod.ts";
definition: T extends string ? string : T extends (infer U)[] ? U[] : T extends ArrayLike<infer U> ? ArrayLike<U> : never