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