(text: string)
| 41 | |
| 42 | const decodeUnknownJson = Schema.decodeUnknownSync(Schema.fromJsonString(Schema.Unknown)); |
| 43 | const decodeJournal = (text: string) => |
| 44 | decodeUnknownJson(text) as { |
| 45 | readonly entries: ReadonlyArray<{ readonly idx: number; readonly tag: string }>; |
| 46 | }; |
| 47 | |
| 48 | let workDir: string; |
| 49 | let previousXdgDataHome: string | undefined; |