UNPKG

ebml-stream

Version:
10 lines (9 loc) 316 B
/// <reference types="node" /> import { EbmlTag } from "../EbmlTag"; import { EbmlElementType } from "../enums/EbmlElementType"; export declare class EbmlDataTag extends EbmlTag { data: any; constructor(id: number, type: EbmlElementType); parseContent(data: Buffer): void; encodeContent(): Buffer; }