UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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