mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
import { ContentView } from '../../content-view';
|
|
|
|
/**
|
|
* Represents a tab navigation content entry.
|
|
*/
|
|
export class TabContentItem extends ContentView {
|
|
/**
|
|
* @private
|
|
*/
|
|
canBeLoaded?: boolean;
|
|
}
|