ngx-stripe
Version:
Collect Payments with Stripe: The Angular Way
6 lines (5 loc) • 323 B
TypeScript
import { InjectionToken } from '@angular/core';
import { StripeConstructorOptions } from '@stripe/stripe-js';
export declare const STRIPE_PUBLISHABLE_KEY: InjectionToken<string>;
export declare const STRIPE_OPTIONS: InjectionToken<StripeConstructorOptions>;
export declare const NGX_STRIPE_VERSION: InjectionToken<string>;