* refactor: replacing mobx with jotai Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Louis <louis@jan.ai>
9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import { ItemProperties } from "./ProductInput";
|
|
|
|
export interface ProductOutput {
|
|
slug: string;
|
|
type: string;
|
|
properties: ItemProperties[];
|
|
description: string;
|
|
}
|