(maxNodes: number, maxEdges: number)
| 110 | * Optional: ServerGraphStore is read-only and omits this. */ |
| 111 | deleteRepo?(repoId: string): Promise<void>; |
| 112 | setLimits?(maxNodes: number, maxEdges: number): Promise<void>; |
| 113 | importBatch(batch: ImportBatchRequest): Promise<ImportBatchResponse>; |
| 114 | /** Flush any buffered writes to the backing store. No-op if unbuffered. */ |
| 115 | flush(): Promise<void>; |
no outgoing calls
no test coverage detected