10 lines
394 B
TypeScript
10 lines
394 B
TypeScript
import type { PoolConnection } from 'better-sqlite-pool';
|
|
export interface AddContractFeeForm {
|
|
contractId: number | string;
|
|
feeId: number | string;
|
|
feeAmount?: number | string;
|
|
quantity: number | string;
|
|
taxAmount?: number | string;
|
|
}
|
|
export default function addContractFee(addFeeForm: AddContractFeeForm, user: User, connectedDatabase?: PoolConnection): Promise<boolean>;
|