summaryrefslogtreecommitdiff
path: root/u/fn/callable.ts
diff options
context:
space:
mode:
Diffstat (limited to 'u/fn/callable.ts')
-rw-r--r--u/fn/callable.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/u/fn/callable.ts b/u/fn/callable.ts
index fc6ea81..cfb7d00 100644
--- a/u/fn/callable.ts
+++ b/u/fn/callable.ts
@@ -15,8 +15,6 @@ export interface BiMapper<T, U, R> extends Callable {
(t: T, u: U): R;
}
-export interface SideEffect<T> extends Mapper<T, void> {
-}
+export interface SideEffect<T> extends Mapper<T, void> {}
-export interface BiSideEffect<T, U> extends BiMapper<T, U, void> {
-}
+export interface BiSideEffect<T, U> extends BiMapper<T, U, void> {}