UNPKG

zmp-core

Version:

Full featured mobile HTML framework for building iOS & Android apps

14 lines (11 loc) 362 B
import ZMP, { CSSSelector, ZMPEventsClass, ZMPPlugin } from '../app/app-class'; export namespace Grid { interface AppMethods {} interface AppParams {} interface AppEvents { /** Event will be triggered when column or row resized */ gridResize: (el: HTMLElement) => void; } } declare const GridComponent: ZMPPlugin; export default GridComponent;