Import * isn't working

Question: I coded a typescript file and set it to export *, then imported it as help into javascript, but help.function(); isn’t working. Why is this?

Repl link: https://replit.com/@SethTanner/Test-1

Helpers.ts

function createEle(type: string, location: element, text?: string, classes?: string, onclickevent?: func, title?: string): element {
  const ele = document.createElement(type);
  location?.append(ele);
  if (text) ele.innerHTML = text;
  if (onclickevent) ele.addEventListener("click", onclickevent);
  if (classes) ele.classList.add(classes);
  if (title) ele.setAttribute('title', title);
  return ele;
}

export * from "./Helpers.ts";

script.js

import * as help from "./Helpers.ts";

help.createEle('div', help.get('body'), 'Hello World", 'show');