UNPKG
ebml-stream
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Ebml parser and encoder
github.com/austinleroy/node-ebml
austinleroy/node-ebml
ebml-stream
/
lib
/
models
/
tags
/
SimpleBlock.d.ts
10 lines
(9 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="node" />
import
{
Block
}
from
"./Block"
;
export
declare
class
SimpleBlock
extends
Block
{
discardable
:
boolean
;
keyframe
:
boolean
;
constructor
(
);
encodeContent
():
Buffer
;
parseContent
(
data
:
Buffer
):
void
; }