UNPKG

@nativewrappers/fivem

Version:

Native wrappers and utilities for use with FiveM.

17 lines (16 loc) 478 B
import type { VehicleWindowIndex } from "../enums/Vehicle"; import type { Vehicle } from "./Vehicle"; export declare class VehicleWindow { private _owner; private _index; constructor(owner: Vehicle, index: VehicleWindowIndex); get Index(): VehicleWindowIndex; set Index(index: VehicleWindowIndex); get IsIntact(): boolean; get Vehicle(): Vehicle; repair(): void; smash(): void; rollUp(): void; rollDown(): void; remove(): void; }