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

18
dist/shared/dto/composant.dto.d.ts vendored Normal file
View File

@@ -0,0 +1,18 @@
export declare class CreateComposantDto {
name: string;
machineId?: string;
parentComposantId?: string;
reference?: string;
prestataire?: string;
prix?: number | null;
emplacement?: string;
typeComposantId?: string;
}
export declare class UpdateComposantDto {
name?: string;
reference?: string;
prestataire?: string;
prix?: number | null;
emplacement?: string;
typeComposantId?: string;
}