Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions packages/types/src/extension-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ export interface IState<T = any> {
values: T;
}

/** Extensions state in advanced logic */
/** State for payment networks extensions only */
export interface IPaymentNetworkState<T = any> extends IState<T> {
id: Exclude<ID, 'content-data'>;
id: Exclude<ID, ID.CONTENT_DATA>;
type: TYPE.PAYMENT_NETWORK;
}

/** Creation action object */
Expand Down