Add productType to ProductEditorContext interface

This commit is contained in:
Matt Sherman 2023-10-16 23:31:44 -04:00
parent 6f53697df2
commit 67e3d72095
1 changed files with 1 additions and 1 deletions

View File

@ -5,9 +5,9 @@ import { BlockEditProps } from '@wordpress/blocks';
import { Product } from '@woocommerce/data';
export interface ProductEditorContext {
editedProduct: Product;
postId: number;
postType: string;
productType: string;
selectedTab: string | null;
}