We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c3ec0 commit 4d26fe8Copy full SHA for 4d26fe8
packages/types/src/extension-types.ts
@@ -53,9 +53,10 @@ export interface IState<T = any> {
53
values: T;
54
}
55
56
-/** Extensions state in advanced logic */
+/** State for payment networks extensions only */
57
export interface IPaymentNetworkState<T = any> extends IState<T> {
58
- id: Exclude<ID, 'content-data'>;
+ id: Exclude<ID, ID.CONTENT_DATA>;
59
+ type: TYPE.PAYMENT_NETWORK;
60
61
62
/** Creation action object */
0 commit comments