Traqula
    Preparing search index...

    Type Alias IndirDef<Context, NameType, ReturnType, ParamType>

    type IndirDef<
        Context = any,
        NameType extends string = string,
        ReturnType = unknown,
        ParamType extends any[] = any[],
    > = {
        fun: (
            def: IndirDefArg,
        ) => (c: Context, ...params: ParamType) => ReturnType;
        name: NameType;
    }

    Type Parameters

    • Context = any
    • NameType extends string = string
    • ReturnType = unknown
    • ParamType extends any[] = any[]
    Index

    Properties

    Properties

    fun: (def: IndirDefArg) => (c: Context, ...params: ParamType) => ReturnType
    name: NameType