samp-node-lib
Version:
NodeJS library for Scripting San Andreas Multiplayer:SAMP depends on samp-node plugin
8 lines (7 loc) • 311 B
TypeScript
import { SampVehicle } from "./SampVehicle";
export declare class SampVehicles {
static ids: Record<string, SampVehicle>;
static getNewClass<V>(vehicleid: number): SampVehicle<V>;
static getClass<V>(vehicleid: number): SampVehicle<V>;
static removeClass<V>(vehicleid: number): SampVehicle<V>;
}