zmp-core
Version:
Full featured mobile HTML framework for building iOS & Android apps
20 lines (16 loc) • 641 B
TypeScript
import ZMP, { ZMPPlugin } from '../../components/app/app-class';
export namespace Clicks {
interface AppMethods {}
interface AppParams {
/** Object with clicks-module related parameters */
clicks?:
| {
/** CSS selector for links that should be treated as external and shouldn't be handled by ZMP. For example such '.external' value will match to links like <a href="somepage.html" class="external"> (with class "external") (default '.external') */
externalLinks?: string;
}
| undefined;
}
interface AppEvents {}
}
declare const ClicksModule: ZMPPlugin;
export default ClicksModule;