4 lines
282 B
TypeScript
4 lines
282 B
TypeScript
import type { PoolConnection } from 'better-sqlite-pool';
|
|
import type { BurialSiteContract } from '../types/recordTypes.js';
|
|
export default function getLotOccupancy(burialSiteContractId: number | string, connectedDatabase?: PoolConnection): Promise<BurialSiteContract | undefined>;
|