summaryrefslogtreecommitdiff
path: root/node_modules/liquidjs/dist/context/scope.d.ts
blob: 4257c6bb7d10708c356a8c777020378b66b05a10 (plain)
1
2
3
4
5
6
import { Drop } from '../drop/drop';
interface ScopeObject extends Record<string, any> {
    toLiquid?: () => any;
}
export type Scope = ScopeObject | Drop;
export {};