mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
import { Meta_Data } from './base';
|
|
import { Tax } from './taxes';
|
|
|
|
export type Fee_Lines = {
|
|
id: number;
|
|
name: string;
|
|
tax_class: string;
|
|
tax_status: string;
|
|
total: string;
|
|
total_tax: string;
|
|
taxes: Partial<Tax>[];
|
|
meta_data: Partial<Meta_Data>;
|
|
};
|