chore: fix chrome

This commit is contained in:
2026-04-15 11:40:45 +02:00
parent ea968b8492
commit dc706d6262
10 changed files with 112 additions and 32 deletions

View File

@@ -1,4 +1,4 @@
import type { SimpleStream } from "../utils/SimpleStream";
import type { SimpleStream } from "../utils/SimpleStream"
export abstract class Program {
abstract Exec(stdin: SimpleStream<string>, stdout: SimpleStream<string>, args: string[]): Promise<number>