(id: string)
| 99 | } |
| 100 | |
| 101 | function createToolCallsCollection(id: string) { |
| 102 | return createCollection( |
| 103 | mockSyncCollectionOptions<ToolCall>({ |
| 104 | id, |
| 105 | getKey: (toolCall) => toolCall.id, |
| 106 | initialData: toolCallsData, |
| 107 | }), |
| 108 | ) |
| 109 | } |
| 110 | |
| 111 | function createChunksCollection(id: string) { |
| 112 | return createCollection( |
no test coverage detected