UNPKG
@ton-hard-core/nest-twa
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
NestJS Telegram Web App Module
github.com/p-orlov/ton-hard-core
p-orlov/ton-hard-core
@ton-hard-core/nest-twa
/
src
/
domain
/
telegram-data-raw.d.ts
10 lines
(9 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
type
TelegramDataRaw
=
Readonly
<{
query_id
?:
string
;
user
?:
string
;
auth_date
:
string
;
hash
:
string
; }>;
export
declare
const
TelegramDataRaw
: {
fromToken
:
(
token
:
string
) =>
TelegramDataRaw
; };