import { ContentType } from "../ContentType"; import { IContentType } from "../ContentType.interface"; export class BlockId extends ContentType implements IContentType { readonly blockId:string constructor(blackJsonRaw:any) { super(blackJsonRaw) this.blockId = this.content as string } toHTML(): string { return `${this.blockId}` } }