@devlander/utils
Version:
Comprehensive JavaScript and TypeScript utilities for seamless development. Includes object manipulation, data validation, and more.
13 lines (12 loc) • 307 B
TypeScript
interface Card {
brand: string;
number: string;
cvv: string;
expirationDate: string;
}
/**
* Generates a random Stripe card object for testing purposes.
* @returns A card object with brand, number, cvv, and expirationDate
*/
export declare function generateStripeCard(): Card;
export {};