diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-01-09 20:13:33 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-01-09 20:13:33 +0530 |
| commit | 5aad91f273f39ba1a11143585835e757a57de234 (patch) | |
| tree | 28379cc54ccb1bdd3de2a4c639d24ea5dac82dd5 /stdlib/sys.ts | |
| parent | 2af211f1bd6a5c81ee7acd2ded2bfacf4dcfb2a4 (diff) | |
| download | ts-types-lang-5aad91f273f39ba1a11143585835e757a57de234.tar.gz ts-types-lang-5aad91f273f39ba1a11143585835e757a57de234.zip | |
refactor: moves stuff around
Diffstat (limited to '')
| -rw-r--r-- | stdlib/sys.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/stdlib/sys.ts b/stdlib/sys.ts index afa5dbd..e170c6c 100644 --- a/stdlib/sys.ts +++ b/stdlib/sys.ts @@ -1,7 +1,10 @@ -import { Effect } from './io' +import { Effect } from './effect' export interface GetEnv<_Name extends string> extends Effect<string> {} export interface GetArgs extends Effect<string[]> {} export interface JsExpr<_Expr extends string> extends Effect<any> {} + +export interface DefineEffect<_Name extends string, _Func extends string> + extends Effect {} |
