Stone.js API
    Preparing search index...

    Type Alias AzureFunctionsEventHandlerFunction<RawResponseType>

    AzureFunctionsEventHandlerFunction: (
        rawEvent: AzureFunctionsEvent,
        context: AzureFunctionsContext,
    ) => Promise<RawResponseType>

    The Azure Functions trigger handler: (triggerInput, invocationContext) => Promise<...>, the signature app.storageQueue(...), app.serviceBusQueue(...), app.timer(...), … expect from @azure/functions v4.

    Type Parameters

    • RawResponseType = RawResponse

      The type of the response returned by the handler.

    Type Declaration