Crude first pass at playground page

This commit is contained in:
2024-11-04 22:30:40 -08:00
parent f225d0ecbd
commit f92d287909
9 changed files with 1209 additions and 0 deletions

13
playground/src/global.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
export {}
declare global {
interface Process {
stdout: {
write(s: string): void
},
argv: string[]
}
let files : Record<string,string>
let process : Process
let __mainExpression_0 : () => unknown
}