forma-embedded-view-sdk
Version:
The Forma Embedded View SDK is a JavaScript library for creating custom extensions in Autodesk Forma Site Design (previously Spacemaker).
20 lines (19 loc) • 733 B
TypeScript
import type { IframeMessenger } from "../iframe-messenger.js";
import { ExperimentalAnalysisApi } from "./analysis.js";
import { ExperimentalHousingApi } from "./housing.js";
import { ExperimentalRenderApi } from "./render.js";
/**
* Experimental APIs are subject to change at any time without notice.
*
* Do not rely on experimental APIs in production code.
*
* @remarks
* Available via {@link auto.Forma | Forma}.{@link index.EmbeddedViewSdk.experimental | experimental}.
*/
export declare class ExperimentalApi {
readonly analysis: ExperimentalAnalysisApi;
readonly housing: ExperimentalHousingApi;
readonly render: ExperimentalRenderApi;
/** @hidden */
constructor(iframeMessenger: IframeMessenger);
}