dns-witch.net.eu.org/node_modules/liquidjs/dist/context/scope.d.ts
2025-07-05 18:19:59 +02:00

6 lines
174 B
TypeScript

import { Drop } from '../drop/drop';
interface ScopeObject extends Record<string, any> {
toLiquid?: () => any;
}
export type Scope = ScopeObject | Drop;
export {};