UNPKG
biner
Version:
latest (0.8.10)
0.8.10
0.8.9
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.3
0.7.2
0.7.1
0.7.0
0.6.0
Declarative binary data encoder / decoder.
github.com/taoyuan/biner
taoyuan/biner
biner
/
lib
/
encode.d.ts
4 lines
(3 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
import
{
BinaryStream
}
from
'./bs'
;
export
declare
function
encode
(
obj
:
any
,
type
:
any
,
target
?:
BinaryStream
): [
BinaryStream
,
number
];
export
declare
function
encodeCommon
(
object
:
any
,
wstream
:
any
,
typeOrSchema
:
any
,
context
:
any
):
void
;