UNPKG

@foxpage/foxpage-manager

Version:

foxpage resource manager

13 lines (12 loc) 321 B
import { Block, StructureNode } from '@foxpage/foxpage-types'; import { ContentDetailInstance } from '../common'; /** * block * * @export * @class Block */ export declare class BlockInstance extends ContentDetailInstance<StructureNode> implements Block { readonly type = "block"; constructor(data: Block); }