UNPKG
ziglite
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
1.0.0-rc
A Laravel named routes integration for Javascript
ziglite.spatian.dev
spatian-dev/ziglite
ziglite
/
dist
/
types
/
utils.types.d.ts
12 lines
(11 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
type
PermitsEmptyArrays
<T> = T | [];
export
type
NonEmptyArray
<T> = [T, ...T[]];
export
type
BriefLocation
= {
host
:
string
;
pathname
:
string
;
search
:
string
; };
export
type
LocationAndQuery
= {
location
:
string
;
query
:
string
; };