Sign in
chromium
/
devtools
/
devtools-frontend
/
c94de04e0e543e48c44ec821546341b0d2042f6f
/
.
/
node_modules
/
engine.io-parser
/
build
/
esm
/
decodePacket.d.ts
blob: 9f5ec244a7e7582d984624f966ff48eb1a17d042 [
file
]
declare
const
decodePacket
:
(
encodedPacket
:
any
,
binaryType
?:
any
)
=>
{
type
:
string
;
data
:
any
;
}
|
{
type
:
any
;
data
:
string
;
}
|
{
type
:
any
;
data
?:
undefined
;
};
export
default
decodePacket
;