UNPKG
word-counter-api
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Word counting API w/CLI
github.com/hiimjustin000/word-counter-api
hiimjustin000/word-counter-api
word-counter-api
/
counter.d.ts
6 lines
(5 loc)
•
103 B
TypeScript
View Raw
1
2
3
4
5
6
declare
function
counter
(
text
:
string
): {
words
:
number
,
characters
:
number
}
export
= counter;