11 lines
409 B
TypeScript
11 lines
409 B
TypeScript
import type * as recordTypes from "../../types/recordTypes";
|
|
interface GetFeeCategoriesFilters {
|
|
occupancyTypeId?: number | string;
|
|
lotTypeId?: number | string;
|
|
}
|
|
interface GetFeeCategoriesOptions {
|
|
includeFees?: boolean;
|
|
}
|
|
export declare const getFeeCategories: (filters?: GetFeeCategoriesFilters, options?: GetFeeCategoriesOptions) => recordTypes.FeeCategory[];
|
|
export default getFeeCategories;
|