@mytiki/receipt-capacitor
Version:
The TIKI Receipt library adds to your Vue.js + Capacitor **mobile app** a Data Reward program for your users to share their receipts in-exchange for **cash from Tiki inc**.
13 lines (12 loc) • 563 B
TypeScript
import type { InjectionKey } from "vue";
import type { Navigate } from "@/nav";
import type { Config } from "@/config";
import type { Capture } from "@/service/capture";
import type { Store } from "@/service/store";
import type { Publish } from "@/service/publish";
export declare const tiki = "Tiki";
export declare const navigate: InjectionKey<Navigate>;
export declare const capture: InjectionKey<Capture>;
export declare const store: InjectionKey<Store>;
export declare const publish: InjectionKey<Publish>;
export declare const config: InjectionKey<Config>;