UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

13 lines (12 loc) 525 B
/** * @namespace Text * @description Author Only */ import { IMBRICATE_TEXT_FEATURE } from "../feature"; import { IImbricateText } from "../interface"; import { ImbricateTextGetContentOutcome } from "../outcome"; import { ImbricateTextFullFeatureBase } from "./full-feature"; export declare abstract class ImbricateTextAuthorOnlyBase extends ImbricateTextFullFeatureBase implements IImbricateText { readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[]; getContent(): PromiseLike<ImbricateTextGetContentOutcome>; }