11 lines
380 B
TypeScript
11 lines
380 B
TypeScript
import type { FeeCategory } from '../types/recordTypes.js';
|
|
interface GetFeeCategoriesFilters {
|
|
occupancyTypeId?: number | string;
|
|
lotTypeId?: number | string;
|
|
}
|
|
interface GetFeeCategoriesOptions {
|
|
includeFees?: boolean;
|
|
}
|
|
export default function getFeeCategories(filters: GetFeeCategoriesFilters, options: GetFeeCategoriesOptions): Promise<FeeCategory[]>;
|
|
export {};
|