UNPKG

@craterapp/vue-sdk

Version:

Embedded Invoicing & Bill Pay for platforms.

12 lines (11 loc) 286 B
import type { Locale } from './locale'; export interface PluginOptions { apiBaseUrl: string; locale?: Locale | 'en'; } export interface AuthService { hasToken: boolean; getToken: () => string | null; setToken: (token: string) => void; removeToken: () => void; }