sic-data-lookup
Version:
A small JavaScript/TypeScript utility for SIC code data lookup.
14 lines (13 loc) • 721 B
TypeScript
import { SectorMap, ParsedSICCodeTable } from "./types.js";
/**
* An object that maps business sectors to an array of their associated SIC code prefixes.
* A SIC code belongs to a sector if it starts with one of the prefixes in the array.
* Data is structured based on the Fintel industry overview page (https://fintel.io/industry).
*/
export declare const sectorMap: SectorMap;
/**
* Raw CSV data containing SIC codes, Office, and Industry Titles.
* This data is used for detailed lookup of SIC codes.
* This has been extracted from the SEC Government page (https://www.sec.gov/search-filings/standard-industrial-classification-sic-code-list).
*/
export declare const parsedSICCodeTableData: ParsedSICCodeTable;