UNPKG

unreal.js

Version:

A pak reader for games like VALORANT & Fortnite written in Node.JS

8 lines (7 loc) 234 B
export declare class ObjectRef<T> { element: T; constructor(element?: T); static ref<T>(element: T): ObjectRef<T>; } export declare type FloatRef = ObjectRef<number>; export declare type IntRef = ObjectRef<number>;