sunrise-cms/database/getLot.d.ts

4 lines
218 B
TypeScript

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