aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/fs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/fs.ts')
-rw-r--r--src/stdlib/fs.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdlib/fs.ts b/src/stdlib/fs.ts
new file mode 100644
index 0000000..0bd6a2c
--- /dev/null
+++ b/src/stdlib/fs.ts
@@ -0,0 +1,6 @@
+import { EffectAtom } from './io'
+
+export interface WriteFile<_Path extends string, _Content extends string> extends EffectAtom { }
+
+export interface ReadFile<_Path extends string> extends EffectAtom<string> { }
+