zellige.js
Version:
A Moroccan utility library for working with CIN, phone numbers, currency, addresses, dates, and more.
26 lines (25 loc) • 541 B
TypeScript
/**
* Extractor module for various data extraction operations
* @module extractors
*/
/**
* Import CIN extraction utilities
*/
import { extractCINMetadata } from './cin';
/**
* Collection of all extractor namespaces
*/
export declare const extractors: {
cin: {
extract: typeof extractCINMetadata;
};
};
/**
* Default export providing access to all extractor functions
* @default
*/
export default extractors;
/**
* Direct exports of CIN extraction functions for granular imports
*/
export { extractCINMetadata };