UNPKG
irctokens
Version:
latest (2.0.1)
2.0.1
2.0.0
RFC1459 and IRCv3 protocol tokeniser
github.com/swantzter/irctokens-js
swantzter/irctokens-js
irctokens
/
dist
/
formatting.d.ts
8 lines
(7 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
FormatArgs
{
tags
?:
Record
<
string
,
string
>;
source
?:
string
;
command
:
string
;
params
:
string
[]; }
export
declare
function
format
(
{ tags, source, command, params }:
FormatArgs
):
string
;