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