@catamphetamine/id3js
Version:
A modern ID3 parser written completely in JavaScript, making use of typed arrays and the HTML5 File API
19 lines • 558 B
TypeScript
import { Reader } from './reader/reader.js';
/**
* Provides read access to the local file system
*/
export declare class LocalReader extends Reader {
protected _path: string;
protected _fd?: number;
/**
* @param {string} path Path of the local file
*/
constructor(path: string);
/** @inheritdoc */
open(): Promise<void>;
/** @inheritdoc */
close(): Promise<void>;
/** @inheritdoc */
read(length: number, position: number): Promise<ArrayBuffer>;
}
//# sourceMappingURL=localReader.d.ts.map