mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
import Scope from 'src/scope/scope';
|
|
export default class {
|
|
initial: any;
|
|
filters: Array<any>;
|
|
constructor(str: string, strictFilters?: boolean);
|
|
value(scope: Scope): any;
|
|
}
|