diff --git a/package.json b/package.json
index d7c80eb..22d792d 100644
--- a/package.json
+++ b/package.json
@@ -122,6 +122,7 @@
]
},
"scripts": {
+ "clean": "aegir clean",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"build": "aegir build",
@@ -129,6 +130,6 @@
"docs": "aegir docs"
},
"devDependencies": {
- "aegir": "^37.7.8"
+ "aegir": "^38.1.8"
}
}
diff --git a/src/index.ts b/src/index.ts
index 64ddaa8..b9512a3 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -4,7 +4,7 @@
* It is a function that takes a source and returns a source.
*/
export interface Transform {
- (source: Source): Source
+ (source: A): B
}
/**
@@ -12,12 +12,18 @@ export interface Transform {
* function that takes a source and iterates over it. It optionally returns
* a value.
*/
-export interface Sink> {
- (source: Source): R
+export interface Sink