Skip to main content
Module

x/cliffy/dev_deps.ts>spy

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Latest
function spy
import { spy } from "https://deno.land/x/cliffy@v1.0.0-rc.4/dev_deps.ts";

Wraps a function or instance method with a Spy.

Type Parameters

optional
Self = any
optional
Args extends unknown[] = any[]
optional
Return = undefined

Type Parameters

Self
Args extends unknown[]
Return

Parameters

func: (this: Self, ...args: Args) => Return

Type Parameters

Self
Args extends unknown[]
optional
Return = undefined

Parameters

constructor: new (...args: Args) => Self

Returns

ConstructorSpy<Self, Args>

Type Parameters

Self
Prop extends keyof Self

Parameters

self: Self
property: Prop

Returns

MethodSpy<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>