UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

13 lines (12 loc) 561 B
/** * @namespace Static * @description Author Only */ import { IMBRICATE_STATIC_FEATURE } from "../feature"; import { IImbricateStatic } from "../interface"; import { ImbricateStaticGetContentOutcome } from "../outcome"; import { ImbricateStaticFullFeatureBase } from "./full-feature"; export declare abstract class ImbricateStaticAuthorOnlyBase extends ImbricateStaticFullFeatureBase implements IImbricateStatic { readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[]; getContentInBase64(): PromiseLike<ImbricateStaticGetContentOutcome<string>>; }