mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
* Rework implementation of payment method warnings * Move payment-method-warnings.component to module * Moved timer/subscribe to app.component * Remove unrelated refactoring * Remaining feedback * Add paymentMethodWarningsService tests * Thomas' feedback * fix tests * Use barrel file imports * Make banner work with new vault navigation * Matt's feedback
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
export type PaymentMethodWarning = {
|
|
organizationName: string;
|
|
risksSubscriptionFailure: boolean;
|
|
acknowledged: boolean;
|
|
savedAt: Date;
|
|
};
|