mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-06 17:28:29 +08:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
import type { View } from '../../ui/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;
|