build: Fichiers de build générés - Ajout des fichiers TypeScript compilés et des déclarations de types

This commit is contained in:
Matthieu
2025-07-29 21:04:35 +02:00
parent e145b2c1ff
commit 1dbbf2b8ec
103 changed files with 10936 additions and 0 deletions

17
dist/shared/dto/machine.dto.d.ts vendored Normal file
View File

@@ -0,0 +1,17 @@
export declare class CreateMachineDto {
name: string;
siteId: string;
reference?: string;
prestataire?: string;
prix?: string;
emplacement?: string;
typeMachineId?: string;
}
export declare class UpdateMachineDto {
name?: string;
reference?: string;
prestataire?: string;
prix?: string;
emplacement?: string;
typeMachineId?: string;
}