UNPKG
fzf
Version:
latest (0.5.2)
unstable (0.4.0-alpha.0)
0.5.2
0.5.1
0.4.1
0.4.0-alpha.0
0.3.2
0.3.1
0.0.1
Do fuzzy matching using FZF algorithm in JavaScript
fzf.netlify.app
ajitid/fzf-for-js
fzf
/
dist
/
types
/
runes.d.ts
5 lines
(4 loc)
•
182 B
TypeScript
View Raw
1
2
3
4
5
import
{
Int32
}
from
"./numerics"
;
export
type
Rune
=
Int32
;
export
declare
const
strToRunes
:
(
str
:
string
) =>
number
[];
export
declare
const
runesToStr
:
(
runes
:
Rune
[]
) =>
string
;