True clean start with src folder

This commit is contained in:
2026-03-10 19:05:37 -05:00
parent 806ebad1c3
commit 5a8b20a827
25 changed files with 3305 additions and 1 deletions
+40
View File
@@ -0,0 +1,40 @@
export interface Scope {
id: string;
name: string;
managementFee: number;
managementFeeType: 'percent' | 'amount';
deliveryFee: number;
deliveryFeeType: 'percent' | 'amount';
useManagementLogic: 'percent' | 'simple';
useDeliveryLogic: 'percent' | 'simple';
estimatorNotes?: string;
bidDescription?: string;
}
export interface SubScope {
id: string;
name: string;
scopeId: string;
}
export interface JobInfo {
number: string;
name: string;
address: string;
workOrder: string;
}
export type PricingType = 'percent' | 'amount';
export interface EstimateItem {
id: string;
description: string;
quantity: number;
unitPrice: number;
markup: number;
markupType: PricingType;
contingency: number;
contingencyType: PricingType;
scopeId?: string;
subScopeId?: string;
}