UNPKG
@lytejs/query-string
Version:
latest (0.2.18)
0.2.18
0.2.17
0.2.12
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
A Query String Parser that actually works
github.com/bugwheels94/lytejs
bugwheels94/lytejs
@lytejs/query-string
/
types
/
index.d.ts
9 lines
(8 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
interface
obj { [
s
:
string
]:
string
|
number
|
boolean
|
Array
<obj> |
undefined
| obj; }
export
declare
const
stringify
:
(
params
: obj
) =>
string
;
export
declare
const
parse
:
(
query
?:
string
) =>
{ [
key
:
string
]:
any
; };
export
{};