UNPKG
mobidev-thelounge
Version:
latest (4.3.1)
4.3.1
The self-hosted Web IRC client
thelounge.chat
thelounge/thelounge
mobidev-thelounge
/
dist
/
client
/
js
/
helpers
/
ircmessageparser
/
findNames.d.ts
7 lines
(6 loc)
•
196 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Part
}
from
"./merge"
;
export
declare
type
NamePart
=
Part
& {
nick
:
string
; };
declare
function
findNames
(
text
:
string
,
nicks
:
string
[]
):
NamePart
[];
export
default
findNames;