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 {};