7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { Drop } from '../drop/drop';
|
|
export interface PlainObject {
|
|
[key: string]: any;
|
|
toLiquid?: () => any;
|
|
}
|
|
export type Scope = PlainObject | Drop;
|