gros-bras-shared
Version:
This holds all shared files such as interfaces or helpers used by Gros Bras, both frontoffices and baackoffices, and backend etc...
13 lines (12 loc) • 444 B
TypeScript
import { IBookingInformations } from '../booking-informations.i';
import { IMoveServiceInformations } from '../move-service-informations.i';
import { ICubage } from './cubage.i';
export * from './cubage.i';
export * from './shape.i';
export interface ITechnicalVisit {
created_at: Date;
updated_at: Date | null;
book_id: string;
cubage: ICubage[];
move_details: IBookingInformations<IMoveServiceInformations>;
}