@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
13 lines (12 loc) • 453 B
TypeScript
/**
* @author WMXPY
* @namespace Static
* @description Content Only
*/
import { ImbricateAuthor } from "../../author/definition";
import { IMBRICATE_STATIC_FEATURE } from "../feature";
import { ImbricateStaticFullFeatureBase } from "./full-feature";
export declare abstract class ImbricateStaticContentOnlyBase extends ImbricateStaticFullFeatureBase {
readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[];
get author(): ImbricateAuthor;
}