marionette: Layout => LayoutView typo

This commit is contained in:
Jiawei Li
2014-12-10 20:08:11 -08:00
parent 9a6d206c5a
commit d162fc7d9e

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);
}