@nativewrappers/client
Version:
Javascript/Typescript wrapper for the FiveM natives
13 lines (12 loc) • 550 B
TypeScript
import { WeaponComponent } from './WeaponComponent';
import { WeaponComponentHash } from './WeaponComponentHash';
import { WeaponHash } from '../hashes';
import { ComponentAttachmentPoint } from './ComponentAttachmentPoint';
export declare class InvalidWeaponComponent extends WeaponComponent {
constructor();
get Active(): boolean;
set Active(value: boolean);
get DisplayName(): string;
get LocalizedName(): string;
static getAttachmentPoint(hash: WeaponHash, componentHash: WeaponComponentHash): ComponentAttachmentPoint;
}