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