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

x/dax/src/command.ts>CommandBuilder#then

Cross platform shell tools for Deno inspired by zx.
Very Popular
Go to Latest
method CommandBuilder.prototype.then
import { CommandBuilder } from "https://deno.land/x/dax@0.31.0/src/command.ts";

Type Parameters

optional
TResult1 = CommandResult
optional
TResult2 = never

Parameters

optional
onfulfilled: ((value: CommandResult) => TResult1 | PromiseLike<TResult1>) | null | undefined
optional
onrejected: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined

Returns

PromiseLike<TResult1 | TResult2>