UNPKG

unpak.js

Version:

Modern TypeScript library for reading Unreal Engine pak files and assets, inspired by CUE4Parse

18 lines 447 B
/** * Asset Registry Tag interface * Represents metadata tags associated with UE4/UE5 assets */ export interface FAssetRegistryTag { key: string; value: string; } /** * Asset Registry Tag implementation */ export declare class FAssetRegistryTagImpl implements FAssetRegistryTag { key: string; value: string; constructor(key: string, value: string); toString(): string; } //# sourceMappingURL=FAssetRegistryTag.d.ts.map