@woocommerce/data
Version:
WooCommerce Admin data store and utilities
23 lines • 496 B
TypeScript
type Feature = {
icon: string;
title?: string;
description: string;
};
type Layout = {
image: string;
features: Feature[];
};
type LayoutType = 'row' | 'column';
export type ShippingMethod = {
name: string;
slug: string;
description: string;
learn_more_link: string;
is_visible: boolean;
available_layouts: LayoutType[];
layout_column?: Layout;
layout_row?: Layout;
dependencies?: string[];
};
export {};
//# sourceMappingURL=types.d.ts.map