UNPKG
bevy-remote-protocol
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.1
Bevy Remote Protocol Client
github.com/foxication/brp-npm
foxication/brp-npm
bevy-remote-protocol
/
src
/
index.ts
8 lines
(6 loc)
•
206 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
TypePath
}
from
'./types'
;
export
*
from
'./protocol'
;
export
*
from
'./types'
;
export
function
short
(
typePath: TypePath
) {
return
(
/[^::]*$/
.
exec
(typePath.
split
(
'<'
)[
0
]) ??
'???'
)[
0
]; }