sunrise-cms/database/getContractInterments.d.ts

4 lines
267 B
TypeScript

import type { PoolConnection } from 'better-sqlite-pool';
import type { ContractInterment } from '../types/record.types.js';
export default function getContractInterments(contractId: number | string, connectedDatabase?: PoolConnection): Promise<ContractInterment[]>;