UNPKG

@gmod/bed

Version:

A BED file format parser with autoSql support

13 lines (12 loc) 360 B
import type { AutoSqlSchema } from './util.ts'; export default class BED { autoSql: AutoSqlSchema; private attemptDefaultBed?; constructor(opts?: { autoSql?: string; type?: string; }); parseLine(line: string | string[], options?: { uniqueId?: string; }): Record<string, string | number | string[] | number[]>; }