Frodo Library - v4.8.5
    Preparing search index...

    Type Alias ScriptBindingElement

    One binding element (a method or field) exposed on a script binding, e.g. httpClient.send(uri, requestOptions). elements is present when elementType is 'field' and the field's value is itself an object exposing further nested methods/fields (e.g. crypto.subtle.digest(...)).

    type ScriptBindingElement = {
        elements?: ScriptBindingElement[];
        elementType: string;
        name: string;
        parameters?: ScriptBindingParameter[];
        returnType?: string;
    }
    Index

    Properties

    elementType: string
    name: string
    parameters?: ScriptBindingParameter[]
    returnType?: string