UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

13 lines (12 loc) 441 B
/** * @author WMXPY * @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; }