Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/froebel/types.ts>PromType

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

If T is promise then the type it resolves to, otherwise T.

definition: T extends PromiseLike<infer I> ? I : T