/** * Node Module * ===================== * * Show hello world text * * @contributors: Patryk Rzucidło [@ptkdev] (https://ptk.dev) * * @license: MIT License * */ import type { ModuleInterface, ModuleResponseInterface } from "../types/webcomponent.interfaces"; /** * Hello World * ===================== * * Print hello-world * * @interface [ModuleInterface ModuleResponseInterface](https://github.com/ptkdev-boilerplate/svelte-webcomponent-boilerplate/blob/main/app/webcomponent/types/module.interfaces.ts) * * @param {string} {text} - input string * * @return {Promise} (async) app() function that return string * */ declare const webcomponent: ({ text }: ModuleInterface) => Promise; export default webcomponent;