gff-nostream
Version:
utilities to read GFF3 data
12 lines (11 loc) • 523 B
TypeScript
import { GFF3Feature } from './util';
/**
* Synchronously parse a string containing GFF3 and return an array of the
* parsed items.
*
* @param str - GFF3 string
* @param inputOptions - Parsing options
* @returns array of parsed features, directives, comments and/or sequences
*/
export declare function parseStringSync(str: string): GFF3Feature[];
export { type GFF3FeatureLine, type GFF3Comment, type GFF3FeatureLineWithRefs, type GFF3Directive, type GFF3Sequence, type GFF3Feature, type GFF3Item, } from './util';