Files
liquidjs/src/context/scope.ts
T
2019-07-06 14:49:39 +08:00

9 lines
156 B
TypeScript

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