Playground enhancements

This commit is contained in:
2025-07-15 19:58:58 -04:00
parent 3289c95e6a
commit bb2ae861b3
73 changed files with 834 additions and 451 deletions

View File

@@ -9,7 +9,14 @@ export interface Handle {
interface Process {
argv: string[];
platform: string;
exit(_: number): void;
stdout: {
write(s: string): unknown
};
cwd(): string;
env: Record<string,string>
__lasterr: {errno: number}
}
export interface NodeShim {
stdout: string;