From e319818b8cc27450237f4b6b96022458ae478ab2 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 6 Jan 2023 18:07:26 +0530 Subject: refactor: splits funcs into stdlib --- src/stdlib/fs.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/stdlib/fs.ts (limited to 'src/stdlib/fs.ts') 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 { } + -- cgit v1.3.1