UNPKG

@gmod/bed

Version:

A BED file format parser with autoSql support

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