mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
import { Drop } from '../drop/drop'
|
|
|
|
export interface PlainObject {
|
|
[key: string]: any;
|
|
toLiquid?: () => any;
|
|
}
|
|
|
|
export type Scope = PlainObject | Drop
|