Remove wails so lovable is happy
This commit is contained in:
23
src/lib/types.ts
Normal file
23
src/lib/types.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { IndJobStatusOptions, IndTransactionRecord } from "./pbtypes"
|
||||
import { IsoDateString } from "./pbtypes"
|
||||
import { IndBillitemRecord } from "./pbtypes"
|
||||
|
||||
export type IndJob = {
|
||||
billOfMaterials?: IndBillitemRecord[]
|
||||
consumedMaterials?: IndBillitemRecord[]
|
||||
created?: IsoDateString
|
||||
expenditures?: IndTransactionRecord[]
|
||||
id: string
|
||||
income?: IndTransactionRecord[]
|
||||
jobEnd?: IsoDateString
|
||||
jobStart?: IsoDateString
|
||||
outputItem: string
|
||||
outputQuantity: number
|
||||
produced?: number
|
||||
saleEnd?: IsoDateString
|
||||
saleStart?: IsoDateString
|
||||
status: IndJobStatusOptions
|
||||
updated?: IsoDateString
|
||||
projectedCost?: number
|
||||
projectedRevenue?: number
|
||||
}
|
Reference in New Issue
Block a user