UNPKG

@cityssm/worktech-api

Version:

Integrations with the WorkTech (Pearl) work order management system.

10 lines (9 loc) 468 B
import { type mssql } from '@cityssm/mssql-multi-pool'; import type { BigIntString } from '../types.js'; /** * Deletes a resource on a work order. * @param mssqlConfig - SQL Service configuration. * @param serviceRequestItemSystemId - The work order resource id. * @returns - True when the delete is processed successfully. */ export declare function deleteWorkOrderResource(mssqlConfig: mssql.config, serviceRequestItemSystemId: BigIntString): Promise<boolean>;