| 1 | import { CreateItem, Item, UpdateItem } from "../item"; |
| 2 | |
| 3 | export interface ItemService { |
| 4 | get: Get; |
| 5 | create: Create; |
| 6 | update: Update; |
| 7 | delete: Delete; |
| 8 | uploadCSV: UploadCSV; |
| 9 | exportCSV: ExportCSV; |
| 10 | } |
| 11 | |
| 12 | export interface Get { |
| 13 | (itemId?: number): Promise<Item[]>; |
nothing calls this directly
no outgoing calls
no test coverage detected