aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-01-12 17:11:36 +0530
committerAkshay Nair <phenax5@gmail.com>2023-01-12 17:11:36 +0530
commit83b6bcaa81a645e1b3936d856fbb84ea219ee04e (patch)
tree66471660cc70c56a5472fd3dd45c480fe86eea2d /stdlib
parentd87c171a59a1293aa223d98fc19d4e5a694516c3 (diff)
downloadts-types-lang-83b6bcaa81a645e1b3936d856fbb84ea219ee04e.tar.gz
ts-types-lang-83b6bcaa81a645e1b3936d856fbb84ea219ee04e.zip
feat: adds exit process effect
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/sys.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/stdlib/sys.ts b/stdlib/sys.ts
index e170c6c..68f713d 100644
--- a/stdlib/sys.ts
+++ b/stdlib/sys.ts
@@ -8,3 +8,6 @@ export interface JsExpr<_Expr extends string> extends Effect<any> {}
export interface DefineEffect<_Name extends string, _Func extends string>
extends Effect {}
+
+export interface Exit<_ extends number | undefined = undefined> extends Effect {}
+