18 lines
315 B
TypeScript
18 lines
315 B
TypeScript
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
|
|
}
|