(storageRef: string, originalSize: number)
| 62 | * Create a spilled data marker |
| 63 | */ |
| 64 | export function createSpilledMarker(storageRef: string, originalSize: number): SpilledDataMarker { |
| 65 | return { |
| 66 | __spilled__: true, |
| 67 | storageRef, |
| 68 | originalSize, |
| 69 | }; |
| 70 | } |
no outgoing calls
no test coverage detected