• This function creates a CloseUser operation using the specified Honeycomb instance and the provided arguments. The operation is used to close the user account in Honeycomb.

    Parameters

    Returns Promise<{
        operation: Operation;
    }>

    An object containing the operation.

    Example

    const honeycomb = new Honeycomb(connection);

    // Create CloseUser operation.
    const { operation } = await createCloseUserOperation(honeycomb, {});
    operation.send(); // The generated CloseUser operation.

Generated using TypeDoc