MCPcopy Index your code
hub / github.com/Packstack-Tech/packstack / ItemService

Interface ItemService

frontend/src/types/api/item.ts:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Implementers 1

Itemfrontend/src/lib/api/item.ts

Calls

no outgoing calls

Tested by

no test coverage detected