Skip to content

isPromise

@tsed/core

Usage

typescript
import { isPromise } from "@tsed/core";

See /packages/core/src/types/utils/objects/isPromise.ts.

Overview

ts
function isPromise<T = any>(target: any): target is Promise<T>;

Description

Tests to see if the object is an ES2015 (ES6) Promise

Released under the MIT License.