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
Go to Latest
function spy
import { spy } from "https://deno.land/x/cliffy@v0.25.7/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
Prop extends keyof Self

Parameters

self: Self
property: Prop

Returns

Spy<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>