* Internal storage format that includes version tracking
| 41 | * Internal storage format that includes version tracking |
| 42 | */ |
| 43 | interface StoredItem<T> { |
| 44 | versionKey: string |
| 45 | data: T |
| 46 | } |
| 47 | |
| 48 | export interface Parser { |
| 49 | parse: (data: string) => unknown |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…