UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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