Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

19
node_modules/stripe/cjs/resources/V2/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { Stripe } from '../../stripe.core.js';
import { DeletedObject } from './DeletedObject.js';
import { Billing } from './Billing/index.js';
import { Commerce } from './Commerce/index.js';
import { Core } from './Core/index.js';
export { DeletedObject } from './DeletedObject.js';
export declare class V2 {
private readonly stripe;
billing: Billing;
commerce: Commerce;
core: Core;
constructor(stripe: Stripe);
}
export declare namespace V2 {
export { DeletedObject };
export { Billing };
export { Commerce };
export { Core };
}