@cityssm/dynamics-gp
Version:
Read only inquiries into Microsoft Dynamics GP using a SQL Server connection.
8 lines (7 loc) • 348 B
TypeScript
import { type mssql } from '@cityssm/mssql-multi-pool';
import type { DiamondTaxedProperty } from './types.js';
export default function _findTaxedPropertiesByAddress(mssqlConfig: mssql.config, address: {
civicNumber: string;
streetName: string;
unitNumberOrQualifier?: string;
}, exactMatch?: boolean): Promise<DiamondTaxedProperty[]>;