gtf-nostream
Version:
utilities to read GTF data
18 lines (17 loc) • 609 B
TypeScript
export default class Parser {
constructor(args: any);
addLine(line: any): void;
_emitItem(i: any): void;
finish(): void;
_enforceBufferSizeLimit(additionalItemCount?: number): void;
/**
* return all under-construction features, called when we know
* there will be no additional data to attach to them
* @private
*/
_emitAllUnderConstructionFeatures(): void;
_bufferLine(line: any): void;
_resolveReferencesTo(feature: any, id: any): void;
_parseError(message: any): void;
_resolveReferencesFrom(feature: any, references: any, ids: any): void;
}