/** * External dependencies */ import type { FSProduct } from '@nelio-content/types'; /** * Internal dependencies */ import type { State } from '../config'; export function getCurrency( state: State ): string { return state.fastspring.currency; } export function getProducts( state: State ): ReadonlyArray< FSProduct > { return state.fastspring.products; }