aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/fs.ts
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-01-06 18:07:26 +0530
committerAkshay Nair <phenax5@gmail.com>2023-01-06 18:07:26 +0530
commite319818b8cc27450237f4b6b96022458ae478ab2 (patch)
tree2c92f4f4b52ead1b879b8e1411ff782fff3dbe6b /src/stdlib/fs.ts
parent549440bf01ac5fa76d34d0b263f409a9802121e4 (diff)
downloadts-types-lang-e319818b8cc27450237f4b6b96022458ae478ab2.tar.gz
ts-types-lang-e319818b8cc27450237f4b6b96022458ae478ab2.zip
refactor: splits funcs into stdlib
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> { }
+