Skip to main content
Module

x/froebel/types.ts>PromType

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

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

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