vue-smart-app-banner
Version:
Smart banner for vue.js 2-3
14 lines (13 loc) • 431 B
TypeScript
import type { ComputedRef, Ref } from 'vue-demi';
export declare const useSmartAppBanner: (emit: any) => {
title: string;
author: string;
buttonText: string;
showBanner: Ref<boolean>;
storeLink: ComputedRef<string>;
inStoreText: ComputedRef<string>;
dismissClick: () => void;
installClick: () => void;
iconStyle: ComputedRef<string>;
mainContainerClass: ComputedRef<string>;
};