mirror of
https://github.com/bitwarden/browser
synced 2026-02-08 12:40:26 +00:00
9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import { PaymentMethodType } from "../../enums";
|
|
|
|
export class TokenizedPaymentSourceRequest {
|
|
type: PaymentMethodType;
|
|
token: string;
|
|
}
|