devsite/node_modules/liquidjs/dist/drop/block-drop.d.ts

11 lines
292 B
TypeScript
Raw Normal View History

2024-07-08 01:49:38 +00:00
import { Drop } from './drop';
export declare class BlockDrop extends Drop {
private superBlockRender;
constructor(superBlockRender?: () => Iterable<any>);
/**
* Provide parent access in child block by
* {{ block.super }}
*/
super(): Iterable<any>;
}