hyper-tuner/hyper-tuner-cloud

View on GitHub
src/utils/ParserInterface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface ParserInterface {
  parse(onProgress: (percent: number) => void): this;
}

export type ParserConstructor = new (buffer: ArrayBuffer) => ParserInterface;