retroload
Version:
Command line utility for converting tape archive files of historical computers into sound for loading them on real devices
9 lines (8 loc) • 369 B
TypeScript
import { type PlayerWrapper } from './PlayerWrapper.js';
export declare class AplayWrapper implements PlayerWrapper {
private readonly sampleRate;
private readonly channels;
static create(sampleRate: number, bitDepth: number, channels: number): Promise<AplayWrapper | undefined>;
private constructor();
play(buffer: Uint8Array): Promise<unknown>;
}