Skip to main content
Module

x/kd_clients/deps.ts>stub

Various HTTP clients for miscellaneous use.
Go to Latest
function stub
Re-export
import { stub } from "https://deno.land/x/kd_clients@v1.0.0-preview.8/deps.ts";

Replaces an instance method with a Stub.

Type Parameters

Self
Prop extends keyof Self

Parameters

self: Self
property: Prop

Returns

Stub<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>

Type Parameters

Self
Prop extends keyof Self

Parameters

self: Self
property: Prop
func: (this: Self, ...args: GetParametersFromProp<Self, Prop>) => GetReturnFromProp<Self, Prop>

Returns

Stub<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>