mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 10:01:08 +08:00
17 lines
373 B
TypeScript
17 lines
373 B
TypeScript
import { View, CustomLayoutView, AddChildFromBuilder } from '../core/view';
|
|
|
|
/**
|
|
*
|
|
* @nsView ContentView
|
|
*/
|
|
export declare class ContentView extends CustomLayoutView implements AddChildFromBuilder {
|
|
/**
|
|
* Gets or sets the single child of the view.
|
|
*
|
|
* @nsProperty
|
|
*/
|
|
content: View;
|
|
layoutView(): View;
|
|
_addChildFromBuilder(name: string, value: any): void;
|
|
}
|