Files
2025-09-18 17:03:23 -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;