Files
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

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 {
//
}