Initial commit — Southwest Roleplay FiveM

This commit is contained in:
jack
2026-06-20 13:05:34 +00:00
commit 3857de3d85
397 changed files with 30322 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { CommandOptions } from './options';
import { ObjectLiteral } from 'typeorm';
export interface BaseCommand {
$options: CommandOptions<{
[key: string]: string;
}>;
run(
player: PlayerMp,
params?:
| {
[key: string]: string | number | null | PlayerMp | VehicleMp;
}
| ObjectLiteral,
): Promise<void>;
}
export class BaseCommand implements BaseCommand {}