| 62 | return { pm: "", qty: 0, pc: "", error: true }; |
| 63 | } |
| 64 | export interface ScannerPartState { |
| 65 | pbn?: string; |
| 66 | on?: string; |
| 67 | pc: string; //LCSC Product Code |
| 68 | pm: string; //Manufacturer Product Number |
| 69 | qty: number; //Quantity |
| 70 | pdi?: string; |
| 71 | error?: boolean; |
| 72 | } |
| 73 | type Operations = ">" | "<" | "=" | "<=" | ">="; |
| 74 | |
| 75 | export interface FilterState { |
nothing calls this directly
no outgoing calls
no test coverage detected