framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
15 lines (12 loc) • 386 B
TypeScript
import { Device } from '../../shared/get-device.js';
import Framework7, { Framework7Plugin } from '../../components/app/app-class.js';
export namespace Device {
interface AppMethods {
/** Object with properties about device */
device: Device;
}
interface AppParams {}
interface AppEvents {}
}
declare const DeviceModule: Framework7Plugin;
export default DeviceModule;