aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/sys.ts
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-01-06 20:07:28 +0530
committerAkshay Nair <phenax5@gmail.com>2023-01-06 20:07:28 +0530
commita56f093bf08780ab7ed7ef196f031c193a522922 (patch)
treef7328d5c154cd7d4521b3bc9575cf89fe6671d5e /src/stdlib/sys.ts
parentd0baefe81d90d44f61322716e20850a7f6f5eaa5 (diff)
downloadts-types-lang-a56f093bf08780ab7ed7ef196f031c193a522922.tar.gz
ts-types-lang-a56f093bf08780ab7ed7ef196f031c193a522922.zip
feat: we got custom effects baebeeyyy
Diffstat (limited to 'src/stdlib/sys.ts')
-rw-r--r--src/stdlib/sys.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stdlib/sys.ts b/src/stdlib/sys.ts
index 1a9b18e..03541be 100644
--- a/src/stdlib/sys.ts
+++ b/src/stdlib/sys.ts
@@ -1,8 +1,8 @@
-import { EffectAtom } from './io'
+import { Effect } from './io'
-export interface GetEnv<_Name extends string> extends EffectAtom<string> { }
+export interface GetEnv<_Name extends string> extends Effect<string> { }
-export interface GetArgs extends EffectAtom<string[]> { }
+export interface GetArgs extends Effect<string[]> { }
-export interface JsExpr<_Expr extends string> extends EffectAtom<any> { }
+export interface JsExpr<_Expr extends string> extends Effect<any> { }