mono/packages/osrl/liquidjs/drop/block-drop.d.ts
2025-12-30 16:33:03 +01:00

11 lines
292 B
TypeScript

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>;
}