UNPKG

174 BTypeScriptView Raw
1import { Drop } from '../drop/drop';
2interface ScopeObject extends Record<string, any> {
3 toLiquid?: () => any;
4}
5export type Scope = ScopeObject | Drop;
6export {};