unreal.js
Version:
A pak reader for games like VALORANT & Fortnite written in Node.JS
15 lines (14 loc) • 453 B
TypeScript
import { EHierarchyObjectType } from "../enums/EHierarchyObjectType";
import { AbstractHierarchy } from "./AbstractHierarchy";
import { FArchive } from "../../reader/FArchive";
export declare class Hierarchy {
readonly type: EHierarchyObjectType;
readonly length: number;
readonly data: AbstractHierarchy;
constructor(Ar: FArchive);
toJson(): {
type: string;
length: number;
data: any;
};
}