Merge pull request #3297 from jiaweihli/marionette

marionette: Layout => LayoutView typo
This commit is contained in:
Masahiro Wakame
2014-12-11 23:09:38 +09:00
+2 -2
View File
@@ -281,13 +281,13 @@ declare module Marionette {
renderModel(): any;
}
class Layout<TModel extends Backbone.Model> extends ItemView<TModel> {
class LayoutView<TModel extends Backbone.Model> extends ItemView<TModel> {
constructor(options?: any);
addRegion(name: string, definition: any): Region<TModel>;
addRegions(regions: any): any;
render(): Layout<TModel>;
render(): LayoutView<TModel>;
removeRegion(name: string);
}