mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
21 lines
332 B
TypeScript
21 lines
332 B
TypeScript
|
|
export type IItemEntryTransactionType = 'SaleInvoice' | 'Bill' | 'SaleReceipt';
|
|
|
|
export interface IItemEntry {
|
|
id?: number,
|
|
|
|
referenceType: string,
|
|
referenceId: number,
|
|
|
|
index: number,
|
|
|
|
itemId: number,
|
|
description: string,
|
|
discount: number,
|
|
quantity: number,
|
|
rate: number,
|
|
}
|
|
|
|
export interface IItemEntryDTO {
|
|
|
|
} |