sunrise-cms/database/getLot.d.ts

5 lines
241 B
TypeScript

import type { Lot } from '../types/recordTypes.js';
export declare function getLotByLotName(lotName: string): Promise<Lot | undefined>;
export declare function getLot(lotId: number | string): Promise<Lot | undefined>;
export default getLot;