| 101 | } |
| 102 | |
| 103 | export interface ConvertMarimoAppOptions { |
| 104 | /** Custom ID generator function. Defaults to crypto.randomUUID(). */ |
| 105 | idGenerator?: () => string |
| 106 | /** Outputs from Marimo session cache, keyed by code_hash */ |
| 107 | outputs?: Map<string, JupyterOutput[]> |
| 108 | } |
| 109 | |
| 110 | export interface MarimoAppInput { |
| 111 | filename: string |
nothing calls this directly
no outgoing calls
no test coverage detected