Files
2022-12-22 20:22:22 +11:00

14 lines
524 B
TypeScript

/// <reference types="node" />
import { DataType } from "./AsfObject";
export declare type AttributeParser = (buf: Buffer) => boolean | string | number | bigint | Buffer;
export declare class AsfUtil {
static getParserForAttr(i: DataType): AttributeParser;
static parseUnicodeAttr(buf: any): string;
private static attributeParsers;
private static parseByteArrayAttr;
private static parseBoolAttr;
private static parseDWordAttr;
private static parseQWordAttr;
private static parseWordAttr;
}