Files
2025-07-15 12:01:45 -07:00

11 lines
269 B
TypeScript

import type { View } from '../core/view';
/**
* Whether the app is embedded into a host project or standalone project
*/
export function isEmbedded(): boolean;
export function setEmbeddedView(view: View | undefined): void;
export function getEmbeddedView(): View;