@nativewrappers/fivem
Version:
Native wrappers and utilities for use with FiveM.
14 lines (13 loc) • 361 B
TypeScript
import { Vector3 } from "./common/utils/Vector";
export declare class Pickup {
private handle;
constructor(handle: number);
/**
* @returns `true` if the current entity is networked, false otherwise
*/
get IsNetworked(): boolean;
get Position(): Vector3;
get IsCollected(): boolean;
delete(): void;
exists(): boolean;
}