@cityssm/bill-data-extract
Version:
Extracts data from scanned bill documents into usable details.
7 lines (6 loc) • 394 B
TypeScript
import { enbridgeExtractType } from '../extracts/enbridge.js';
import { sectorflowExtractType } from '../extracts/sectorflow.js';
import { ssmpucExtractType } from '../extracts/ssmpuc.js';
type ExtractType = typeof ssmpucExtractType | typeof enbridgeExtractType | typeof sectorflowExtractType;
export declare function getSuggestedExtractType(billPath: string): Promise<ExtractType>;
export {};