/** * SNAP (Stanford Network Analysis Project) format support. * * Provides parsing for SNAP edge list format, commonly used * for large network datasets from snap.stanford.edu. * * @example * ```typescript * import { parseSnap, snapToJson, fetchSnapDataset } from 'graphbox'; * * // Parse edge list to JSON * const doc = parseSnap(edgeListContent); * const json = snapToJson(doc, { meta: { ... } }); * * // Fetch and convert in one step * const result = await fetchSnapDataset(url, { meta: { ... } }); * ``` */ export type { SnapDocument } from './types'; export type { SnapToJsonOptions } from './parse'; export { parseSnap, snapToJson } from './parse'; export type { FetchSnapOptions, FetchSnapResult } from './fetch'; export { fetchSnapDataset } from './fetch'; //# sourceMappingURL=index.d.ts.map