sunrise-cms/database/getFee.d.ts

4 lines
229 B
TypeScript

import type { PoolConnection } from 'better-sqlite-pool';
import type { Fee } from '../types/record.types.js';
export default function getFee(feeId: number | string, connectedDatabase?: PoolConnection): Promise<Fee | undefined>;