aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/sys.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/sys.ts')
-rw-r--r--src/stdlib/sys.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/sys.ts b/src/stdlib/sys.ts
new file mode 100644
index 0000000..1a9b18e
--- /dev/null
+++ b/src/stdlib/sys.ts
@@ -0,0 +1,8 @@
+import { EffectAtom } from './io'
+
+export interface GetEnv<_Name extends string> extends EffectAtom<string> { }
+
+export interface GetArgs extends EffectAtom<string[]> { }
+
+export interface JsExpr<_Expr extends string> extends EffectAtom<any> { }
+