Desplegando App

This commit is contained in:
2022-02-25 13:15:51 -05:00
parent 7e6467e75d
commit f12b75b26d
1182 changed files with 166158 additions and 1 deletions

3112
node_modules/telegram-typings/index.d.ts generated vendored Normal file

File diff suppressed because it is too large Load Diff

0
node_modules/telegram-typings/index.js generated vendored Normal file
View File

3114
node_modules/telegram-typings/index.js.flow generated vendored Normal file

File diff suppressed because it is too large Load Diff

59
node_modules/telegram-typings/package.json generated vendored Normal file
View File

@@ -0,0 +1,59 @@
{
"_from": "telegram-typings@^3.6.0",
"_id": "telegram-typings@3.6.1",
"_inBundle": false,
"_integrity": "sha512-njVv1EAhIZnmQVLocZEADYUyqA1WIXuVcDYlsp+mXua/XB0pxx+PKtMSPeZ/EE4wPWTw9h/hA9ASTT6yQelkiw==",
"_location": "/telegram-typings",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "telegram-typings@^3.6.0",
"name": "telegram-typings",
"escapedName": "telegram-typings",
"rawSpec": "^3.6.0",
"saveSpec": null,
"fetchSpec": "^3.6.0"
},
"_requiredBy": [
"/telegraf"
],
"_resolved": "https://registry.npmjs.org/telegram-typings/-/telegram-typings-3.6.1.tgz",
"_shasum": "1288d547f8694b61f1c01c2993e295f3114d9e25",
"_spec": "telegram-typings@^3.6.0",
"_where": "/home/pablinux/Projects/Node/app_sigma/node_modules/telegraf",
"author": {
"name": "Sergey Sova",
"email": "mail@sergeysova.com",
"url": "https://sergeysova.com"
},
"bugs": {
"url": "https://github.com/sergeysova/telegram-typings/issues"
},
"bundleDependencies": false,
"dependencies": {},
"deprecated": false,
"description": "Telegram typings for TypeScript and Flowtype to create bots",
"homepage": "https://github.com/sergeysova/telegram-typings#readme",
"keywords": [
"telegram",
"bots",
"typings",
"types",
"flow",
"type",
"typescript",
"script",
"build",
"generate"
],
"license": "MIT",
"main": "index.js",
"name": "telegram-typings",
"repository": {
"type": "git",
"url": "git+https://github.com/sergeysova/telegram-typings.git"
},
"typings": "telegram-typings.d.ts",
"version": "3.6.1"
}

32
node_modules/telegram-typings/readme.md generated vendored Normal file
View File

@@ -0,0 +1,32 @@
# telegram-typings
Full types parsed from core.telegram.org/bots/api for TypeScript and Flowtype
## Installation
Just install it as your dependency and use
```bash
npm install --save telegram-typings
```
```ts
// typescript
import { User, Chat, Voice } from 'telegram-typings'
```
### Flow
```bash
# Search in flow-typed
flow-typed search telegram-typings
# if not found, copy content of ./javascript/index.js.flow to your flow-typed
wget https://raw.githubusercontent.com/sergeysova/telegram-typings/master/javascript/index.js.flow -O ./flow-typed/npm/telegram-typings_vx.x.x.js
# next use as normal module
```
```js
// flow
import type { User, Chat, Voice } from 'telegram-typings'
```