@plattar/plattar-ar-adapter
Version:
Plattar AR Adapter for interfacing with Google & Apple WebAR
15 lines (14 loc) • 522 B
TypeScript
import { ProductAR, ProductAROptions } from "./product-ar";
import { LauncherAR } from "./launcher-ar";
/**
* Allows launching Product AR by providing a SceneProduct ID instead.
* SceneProducts are much more convenient to grab from the Plattar CMS
*/
export declare class SceneProductAR extends ProductAR {
private readonly _sceneProductID;
private _attachedProductID;
constructor(options: ProductAROptions);
get sceneProductID(): string;
get productID(): string;
init(): Promise<LauncherAR>;
}