import { Row_Article, Row_Costunit, Row_Hashtag, Row_Manufacturer, Row_Masterdata, Row_Receipt, Row_Store, Row_StoreSection } from "jm-castle-warehouse-types/build"; export type OmitMasterdataFields = Omit, "created_at">, "edited_at">; export type HashtagExample = OmitMasterdataFields; export type CostUnitExample = OmitMasterdataFields; export type ManufacturerExample = OmitMasterdataFields; export type ArticleExample = OmitMasterdataFields; export type ArticleStockExample = Omit, "receipt_at">, "dataset_id">, "section_id">; export type StoreSectionExample = OmitMasterdataFields> & { articleStock: ArticleStockExample[]; }; export type StoreExample = OmitMasterdataFields & { storeSection: StoreSectionExample[]; }; export interface Example { name: string; hashtag: HashtagExample[]; costunit: CostUnitExample[]; manufacturer: ManufacturerExample[]; store: StoreExample[]; article: ArticleExample[]; image: { image_id: string; path: string; }[]; }