Rocky_Mountain_Vending/.pnpm-store/v10/files/c5/11d46539f3306014d5139a33de7fb544b5e414c19fbbf5ff22d98874aeee4add0170b253833ef5770140f41bd57bdea568f9a4df0b020677c161a1b73ba4fe
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

37 lines
1.3 KiB
Text

import {StripeElementBase, StripeElementStyle} from '../base';
export type StripeIssuingCardCopyButtonElement = StripeElementBase & {
/**
* Triggered when the element is clicked.
*/
on(
eventType: 'click',
handler: (event: {elementType: 'issuingCardCopyButton'}) => any
): StripeIssuingCardCopyButtonElement;
once(
eventType: 'click',
handler: (event: {elementType: 'issuingCardCopyButton'}) => any
): StripeIssuingCardCopyButtonElement;
off(
eventType: 'click',
handler?: (event: {elementType: 'issuingCardCopyButton'}) => any
): StripeIssuingCardCopyButtonElement;
/**
* Updates the options the `IssuingCardCopyButtonElement` was initialized with.
* Updates are merged into the existing configuration.
*
* The styles of an `IssuingCardCopyButtonElement` can be dynamically changed using `element.update`.
* This method can be used to simulate CSS media queries that automatically adjust the size of elements when viewed on different devices.
*/
update(options: Partial<StripeIssuingCardCopyButtonElementOptions>): void;
};
export interface StripeIssuingCardCopyButtonElementOptions {
/**
* The issued card data element to copy to the user's clipboard
*/
toCopy: 'expiry' | 'cvc' | 'number' | 'pin';
style?: StripeElementStyle;
}