@bititrain/meilman
v1.1.4
Published
meilman
Downloads
7
Readme
Using this module in other modules
Here is a quick example of how this module can be used in other modules. The TypeScript Module Resolution Logic makes it quite easy. The file src/index.ts
is a barrel that re-exports selected exports from other files. The package.json file contains main
attribute that points to the generated lib/index.js
file and typings
attribute that points to the generated lib/index.d.ts
file.
- To use the
MeilMan
class in a TypeScript file -
import { MeilMan } from "@bititrain/meilman";
const MeilMan = new MeilMan("TELEGRAM_TOKEN", "BOT_WEBHOOK_URL");
- To use the
MeilMan
class in a JavaScript file -
const MeilMan = require('@bititrain/meilman').MeilMan;
const MeilMan = new MeilMan("TELEGRAM_TOKEN", "BOT_WEBHOOK_URL");