sunrise-cms/database/getLotComments.d.ts

5 lines
271 B
TypeScript

import type { PoolConnection } from 'better-sqlite-pool';
import type { LotComment } from '../types/recordTypes.js';
export declare function getLotComments(lotId: number | string, connectedDatabase?: PoolConnection): Promise<LotComment[]>;
export default getLotComments;