UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

14 lines (13 loc) 687 B
/** * @author WMXPY * @namespace StaticManager * @description Full Feature Blob */ import { IMBRICATE_STATIC_MANAGER_FEATURE } from "../feature"; import { ImbricateStaticManagerGetStaticUriOutcome } from "../outcome"; import { IImbricateStaticManager } from "../static-manager"; import { ImbricateStaticManagerFullFeatureBase } from "./full-feature"; export declare abstract class ImbricateStaticManagerFullFeatureBlobBase extends ImbricateStaticManagerFullFeatureBase implements IImbricateStaticManager { readonly supportedFeatures: IMBRICATE_STATIC_MANAGER_FEATURE[]; getStaticUri(_staticUniqueIdentifier: string): PromiseLike<ImbricateStaticManagerGetStaticUriOutcome>; }