import { IBlock } from "./IBlock"; export interface INamedNote extends IBlock { readonly type: 'name'; readonly value: string; }