stripe
Version:
Stripe API wrapper
24 lines (23 loc) • 1.01 kB
TypeScript
import { Stripe } from '../../stripe.core.js';
import { EarlyFraudWarning, EarlyFraudWarningResource } from './EarlyFraudWarnings.js';
import { PaymentEvaluation, PaymentEvaluationResource } from './PaymentEvaluations.js';
import { ValueList, ValueListResource } from './ValueLists.js';
import { ValueListItem, ValueListItemResource } from './ValueListItems.js';
export { EarlyFraudWarning } from './EarlyFraudWarnings.js';
export { PaymentEvaluation } from './PaymentEvaluations.js';
export { ValueList } from './ValueLists.js';
export { ValueListItem } from './ValueListItems.js';
export declare class Radar {
private readonly stripe;
earlyFraudWarnings: EarlyFraudWarningResource;
paymentEvaluations: PaymentEvaluationResource;
valueLists: ValueListResource;
valueListItems: ValueListItemResource;
constructor(stripe: Stripe);
}
export declare namespace Radar {
export { EarlyFraudWarning };
export { PaymentEvaluation };
export { ValueList };
export { ValueListItem };
}