UNPKG

assemblyai

Version:

The AssemblyAI JavaScript SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, as well as the latest LeMUR models.

9 lines (7 loc) 197 B
declare const Bun: { file(path: string): BunFile; }; declare type BunFile = { stream(): ReadableStream<Uint8Array>; }; export const readFile = async (path: string) => Bun.file(path).stream();