framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
18 lines (15 loc) • 525 B
TypeScript
import Framework7, { CSSSelector, Framework7EventsClass, Framework7Plugin } from '../app/app-class';
export namespace Grid {
interface AppMethods {}
interface AppParams {}
interface DomEvents {
/** Event will be triggered on resizable grid column (or row) resize */
'grid:resize': () => void;
}
interface AppEvents {
/** Event will be triggered when column or row resized */
gridResize: (el: HTMLElement) => void;
}
}
declare const GridComponent: Framework7Plugin;
export default GridComponent;