UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

14 lines (13 loc) 725 B
/** * @namespace TextManager * @description Readonly */ import { ImbricateTextAuditOptions } from "../../text/definition"; import { IMBRICATE_TEXT_MANAGER_FEATURE } from "../feature"; import { ImbricateTextManagerCreateTextOutcome } from "../outcome"; import { IImbricateTextManager } from "../text-manager"; import { ImbricateTextManagerFullFeatureBase } from "./full-feature"; export declare abstract class ImbricateTextManagerReadonlyBase extends ImbricateTextManagerFullFeatureBase implements IImbricateTextManager { readonly supportedFeatures: IMBRICATE_TEXT_MANAGER_FEATURE[]; createInBase64(_content: string, _auditOptions?: ImbricateTextAuditOptions): PromiseLike<ImbricateTextManagerCreateTextOutcome>; }