sunrise-cms/database/getLot.d.ts

5 lines
274 B
TypeScript

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