/** * External dependencies */ import type { FSProduct } from '@nelio-content/types'; export type State = { readonly currency: string; readonly products: ReadonlyArray< FSProduct >; }; export const INIT: State = { currency: 'USD', products: [], };