export interface ListProps { coverResource?: CoverResourceProps grade?: string id?: string name?: string price?: undefined priceList?: PriceProps[] type?: string } export interface CoverResourceProps { path?: string url?: string } export interface PriceProps { label?: string value?: string }