UNPKG
@nickbusey/thelounge
Version:
latest (4.3.2-7)
4.3.2
4.3.2-7
4.3.2-6
4.3.2-5
4.3.2-3
4.3.2-2
4.3.2-1
4.3.1
The self-hosted Web IRC client
thelounge.chat
nickbusey/thelounge
@nickbusey/thelounge
/
dist
/
client
/
js
/
helpers
/
ircmessageparser
/
findLinks.d.ts
8 lines
(7 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Part
}
from
"./merge"
;
export
declare
type
LinkPart
=
Part
& {
link
:
string
; };
declare
function
findLinks
(
text
:
string
):
LinkPart
[];
declare
function
findLinksWithSchema
(
text
:
string
):
LinkPart
[];
export
{ findLinks, findLinksWithSchema };