dns-witch.net.eu.org/node_modules/liquidjs/dist/context/scope.d.ts

7 lines
174 B
TypeScript
Raw Normal View History

2025-07-05 16:19:59 +00:00
import { Drop } from '../drop/drop';
interface ScopeObject extends Record<string, any> {
toLiquid?: () => any;
}
export type Scope = ScopeObject | Drop;
export {};