UNPKG

fivem-js

Version:

Javascript/Typescript wrapper for the FiveM natives

12 lines (11 loc) 366 B
import { Vector3 } from '../utils'; import { Entity } from './'; export declare class EntityBone { get Index(): number; get Owner(): Entity; get Position(): Vector3; get IsValid(): boolean; protected readonly owner: Entity; protected readonly index: number; constructor(owner: Entity, boneIndex?: number, boneName?: string); }