export async function httpTriggerTableOutput()

in app/v4/src/functions/httpTriggerTableOutput.ts [11:19]


export async function httpTriggerTableOutput(
    request: HttpRequest,
    context: InvocationContext
): Promise<HttpResponseInit> {
    context.log(`httpTriggerTableOutput was triggered`);
    const body = await request.json();
    context.extraOutputs.set(tableOutput, body);
    return { status: 201 };
}