UNPKG

275 BTypeScriptView Raw
1import type { View } from '../../ui/core/view';
2
3/**
4 * Whether the app is embedded into a host project or standalone project
5 */
6export function isEmbedded(): boolean;
7
8export function setEmbeddedView(view: View | undefined): void;
9
10export function getEmbeddedView(): View;