UNPKG

878 BTypeScriptView Raw
1import { FrameGridOptions } from "@egjs/grid";
2import InfiniteGrid from "../InfiniteGrid";
3import { InfiniteGridOptions } from "../types";
4export interface FrameInfiniteGridOptions extends FrameGridOptions, InfiniteGridOptions {
5}
6export declare class FrameInfiniteGrid extends InfiniteGrid<FrameInfiniteGridOptions> {
7 static propertyTypes: {
8 frame: import("@egjs/grid").PROPERTY_TYPE;
9 useFrameFill: import("@egjs/grid").PROPERTY_TYPE;
10 rectSize: import("@egjs/grid").PROPERTY_TYPE;
11 gap: import("@egjs/grid").PROPERTY_TYPE;
12 defaultDirection: import("@egjs/grid").PROPERTY_TYPE;
13 renderOnPropertyChange: import("@egjs/grid").PROPERTY_TYPE;
14 preserveUIOnDestroy: import("@egjs/grid").PROPERTY_TYPE;
15 useFit: import("@egjs/grid").PROPERTY_TYPE;
16 };
17 static defaultOptions: Required<FrameInfiniteGridOptions>;
18}