import { IBlockType } from './IBlockType'; export default class BlockType

implements IBlockType

{ private readonly _label; private readonly _color; private readonly _resource; constructor(_label: string, _color: string, _resource: P); readonly label: string; readonly color: string; readonly resource: P; }