diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-01-11 14:26:54 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-01-11 14:29:56 +0530 |
| commit | a6ff70d09e1e5f161e401a3665bfe44b2abfc44e (patch) | |
| tree | 681b23a85cd24cc99ff80a364324b3f581dfa195 /examples | |
| parent | e2664926e239d2b5cb1e3433be0098306d3586bf (diff) | |
| download | ts-types-lang-a6ff70d09e1e5f161e401a3665bfe44b2abfc44e.tar.gz ts-types-lang-a6ff70d09e1e5f161e401a3665bfe44b2abfc44e.zip | |
fix: minor fixes and refactors
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/custom-effect.ts | 3 | ||||
| -rw-r--r-- | examples/test-runner.ts | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/examples/custom-effect.ts b/examples/custom-effect.ts index f87f242..74c96b0 100644 --- a/examples/custom-effect.ts +++ b/examples/custom-effect.ts @@ -1,4 +1,5 @@ -import { Bind, DefineEffect, Effect, Kind1 } from '../stdlib/effect' +import { Bind, Effect, Kind1 } from '../stdlib/effect' +import { DefineEffect } from '../stdlib/sys' import { Print } from '../stdlib/stdio' interface Mathemagic<_A, _B> extends Effect {} diff --git a/examples/test-runner.ts b/examples/test-runner.ts index b06b010..7093bf7 100644 --- a/examples/test-runner.ts +++ b/examples/test-runner.ts @@ -1,5 +1,5 @@ import { Do, Effect } from '../stdlib/effect' -import { Print, PutString, PutStringLn } from '../stdlib/stdio' +import { Print, PutStringLn } from '../stdlib/stdio' import { DefineEffect } from '../stdlib/sys' type Testi<m extends string, effs extends Effect[]> = [ |
