mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-28 07:17:21 +00:00
21 lines
465 B
TypeScript
21 lines
465 B
TypeScript
import { Layout1dBase } from "./Layout1dBase.js";
|
|
/**
|
|
* TODO @straversi: document and test this Layout.
|
|
*/
|
|
export declare abstract class Layout1dGrid<
|
|
Config
|
|
> extends Layout1dBase<Config> {
|
|
protected _rolumns: number;
|
|
_viewDim2Changed(): void;
|
|
_itemDim2Changed(): void;
|
|
_getActiveItems(): void;
|
|
_getItemPosition(
|
|
idx: number
|
|
): {
|
|
top: number;
|
|
left: number;
|
|
};
|
|
_updateScrollSize(): void;
|
|
}
|
|
//# sourceMappingURL=Layout1dGrid.d.ts.map
|