mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00
13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
/**
|
|
* @module "ui/layouts/layout"
|
|
*/ /** */
|
|
|
|
import { LayoutBase } from "./layout-base";
|
|
|
|
/**
|
|
* Base class for all views that supports children positioning in cross platform manner.
|
|
*/
|
|
export class Layout extends LayoutBase {
|
|
//
|
|
}
|