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