@nevware21/ts-utils
    Preparing search index...

    Type Alias ProxyFunctionDef<T, H>

    The Definition of how proxy functions should be applied to target objects

    type ProxyFunctionDef<T, H> = {
        as?: TypeFuncNames<T>;
        n: TypeFuncNames<H>;
        rp?: boolean;
    }

    Type Parameters

    • T
    • H
    Index

    Properties

    Properties

    Use this name as on the target for the proxied function, defaults to the same as the host function when not defined.

    Identifies the host function name

    rp?: boolean

    If the target already includes the function should it be replaced, defaults to false.