framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
20 lines (16 loc) • 669 B
TypeScript
import Framework7, { Framework7Plugin } 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 Framework7. 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: Framework7Plugin;
export default ClicksModule;