UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

12 lines (11 loc) 424 B
/** * @namespace Text * @description Content Only */ import { ImbricateAuthor } from "../../author/definition"; import { IMBRICATE_TEXT_FEATURE } from "../feature"; import { ImbricateTextFullFeatureBase } from "./full-feature"; export declare abstract class ImbricateTextContentOnlyBase extends ImbricateTextFullFeatureBase { readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[]; get author(): ImbricateAuthor; }