chore: fix linting, working on #120

This commit is contained in:
harttle
2019-04-17 10:45:02 +08:00
parent 00bc1efe6a
commit 6c5dc336e7
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -1,3 +1,3 @@
import { FilterImpl } from "./filter-impl";
import { FilterImpl } from './filter-impl'
export type FilterImplOptions = (this: FilterImpl, value: any, ...args: any[]) => any
export type FilterImplOptions = (this: FilterImpl, value: any, ...args: any[]) => any
+2 -2
View File
@@ -1,5 +1,5 @@
import Context from "../../context/context";
import Context from '../../context/context'
export interface FilterImpl {
context: Context
}
}