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

Interface PackService

frontend/src/types/api/pack.ts:4–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { NewPackItem, PackItemAttr } from "../item";
3
4export interface PackService {
5 get: Get;
6 getUserPacks: GetUserPacks;
7 create: Create;
8 update: Update;
9 delete: Delete;
10 addItem: AddItem;
11 removeItem: RemoveItem;
12 exportItems: ExportItems;
13}
14
15export interface Get {
16 (packId: number): Promise<Pack>;

Callers

nothing calls this directly

Implementers 1

Packfrontend/src/lib/api/pack.ts

Calls

no outgoing calls

Tested by

no test coverage detected