1 | import type { Context } from '../context';
|
2 | import type { Liquid } from '../liquid';
|
3 | export interface FilterImpl {
|
4 | context: Context;
|
5 | liquid: Liquid;
|
6 | }
|
7 | export type FilterHandler = (this: FilterImpl, value: any, ...args: any[]) => any;
|
8 | export interface FilterOptions {
|
9 | handler: FilterHandler;
|
10 | raw: boolean;
|
11 | }
|
12 | export type FilterImplOptions = FilterHandler | FilterOptions;
|