5 lines
491 B
TypeScript
5 lines
491 B
TypeScript
import type { BurialSiteContract, BurialSiteContractFee } from '../types/recordTypes.js';
|
|
export declare function getFieldValueByContractTypeField(burialSiteContract: BurialSiteContract, contractTypeField: string): string | undefined;
|
|
export declare function getFeesByFeeCategory(burialSiteContract: BurialSiteContract, feeCategory: string, feeCategoryContains?: boolean): BurialSiteContractFee[];
|
|
export declare function getTransactionTotal(burialSiteContract: BurialSiteContract): number;
|