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/sys.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/stdlib/sys.ts (limited to 'src/stdlib/sys.ts') diff --git a/src/stdlib/sys.ts b/src/stdlib/sys.ts new file mode 100644 index 0000000..1a9b18e --- /dev/null +++ b/src/stdlib/sys.ts @@ -0,0 +1,8 @@ +import { EffectAtom } from './io' + +export interface GetEnv<_Name extends string> extends EffectAtom { } + +export interface GetArgs extends EffectAtom { } + +export interface JsExpr<_Expr extends string> extends EffectAtom { } + -- cgit v1.3.1