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/io.ts | |
| parent | 2af211f1bd6a5c81ee7acd2ded2bfacf4dcfb2a4 (diff) | |
| download | ts-types-lang-5aad91f273f39ba1a11143585835e757a57de234.tar.gz ts-types-lang-5aad91f273f39ba1a11143585835e757a57de234.zip | |
refactor: moves stuff around
Diffstat (limited to 'stdlib/io.ts')
| -rw-r--r-- | stdlib/io.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/stdlib/io.ts b/stdlib/io.ts deleted file mode 100644 index c37cd32..0000000 --- a/stdlib/io.ts +++ /dev/null @@ -1,17 +0,0 @@ -export interface Effect<T = unknown> { - output: T -} - -export interface Kind1<Inp = unknown, Out = unknown> { - input: Inp - return: Out -} - -export interface Bind<_Eff extends Effect, _Fn extends Kind1> extends Effect {} - -export interface Seq<_Effs extends Effect[]> extends Effect {} - -export interface Do<_Effs extends Effect[]> extends Effect {} - -export interface DefineEffect<_Name extends string, _Func extends string> - extends Effect {} |
