UNPKG
@levellr/crossgram
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
Repost Tweets to Telegram automatically
github.com/levellr/crossgram
levellr/crossgram
@levellr/crossgram
/
dist
/
src
/
unshortener.d.ts
7 lines
(6 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
class
TwitterLinkUnshortener
{
static
extractShortlinks
(
tweetText
:
string
):
string
[];
static
unshortenLinks
(
tweetText
:
string
): Promise<
string
>;
static
unshortenLink
(
shortlink
:
string
): Promise<
string
>;
static
isTwitterMediaUrl
(
url
:
string
):
boolean
; }