7 lines
258 B
TypeScript
7 lines
258 B
TypeScript
|
|
import { Drop } from '../drop/drop';
|
||
|
|
export interface ScopeObject extends Record<string | number | symbol, any> {
|
||
|
|
toLiquid?: () => any;
|
||
|
|
}
|
||
|
|
export type Scope = ScopeObject | Drop;
|
||
|
|
export declare function createScope(from?: ScopeObject): ScopeObject;
|