docs: website for LiquidJS

This commit is contained in:
harttle
2020-03-28 17:21:07 +08:00
parent 0633dbeabb
commit 3e42d6b1b0
422 changed files with 14509 additions and 50335 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
import { FilterImpl } from './filter-impl'
export type FilterImplOptions = (this: FilterImpl, value: any, ...args: any[]) => any
export interface FilterImplOptions {
(this: FilterImpl, value: any, ...args: any[]): any;
}