Skip to content

Commit

Permalink
fix(core): Correct typing of PaymentMetadata
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Aug 1, 2019
1 parent 58caba7 commit e6d35df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/entity/payment/payment.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { VendureEntity } from '../base/base.entity';
import { Order } from '../order/order.entity';
import { Refund } from '../refund/refund.entity';

export type PaymentMetadata = { [key: string]: string | number | boolean };
export type PaymentMetadata = any;

/**
* @description
Expand Down

0 comments on commit e6d35df

Please sign in to comment.