Files
fedi-classifieds/node_modules/liquidjs/dist/context/scope.d.ts
2026-04-29 08:30:52 -07:00

7 lines
186 B
TypeScript

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