Initial working version

This commit is contained in:
Samuel Kent
2022-12-22 20:22:22 +11:00
parent ce9675a1cc
commit ced7fa5092
902 changed files with 150252 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/// <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;
}