@datalayer/core
Version:
[](https://datalayer.io)
33 lines (32 loc) • 599 B
TypeScript
import type { ICheckoutPortal } from '../../models';
/**
* Price item interface
*/
export interface IPrice {
/**
* Price ID
*/
id: string;
/**
* Price user readable name
*/
name: string;
/**
* Cost in cents
*/
amount: number;
/**
* Cost currency
*/
currency: string;
/**
* Computational credits to receive
*/
credits: number;
}
/**
* Stripe checkout.
*/
export declare function StripeCheckout({ checkoutPortal, }: {
checkoutPortal: ICheckoutPortal | null;
}): import("react/jsx-runtime").JSX.Element;