TYPESCRIPT customs-item.d.ts
import { OrderItem } from './order-item';
export interface CustomsItem extends Omit< OrderItem, 'name' | 'id' > {
id: string | number;
description: string;
hsTariffNumber: string;
originCountry: string;
}
import { OrderItem } from './order-item';
export interface CustomsItem extends Omit< OrderItem, 'name' | 'id' > {
id: string | number;
description: string;
hsTariffNumber: string;
originCountry: string;
}