UNPKG

292 BTypeScriptView Raw
1import { Drop } from './drop';
2export declare class BlockDrop extends Drop {
3 private superBlockRender;
4 constructor(superBlockRender?: () => Iterable<any>);
5 /**
6 * Provide parent access in child block by
7 * {{ block.super }}
8 */
9 super(): Iterable<any>;
10}