9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import { ItemProperties } from './ProductInput'
|
|
|
|
export interface ProductOutput {
|
|
slug: string
|
|
type: string
|
|
properties: ItemProperties[]
|
|
description: string
|
|
}
|