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.

10 lines (8 loc) 220 B
declare const Deno: { open(path: string): Promise<DenoFile>; }; declare type DenoFile = { readable: ReadableStream<Uint8Array>; }; export const readFile = async (path: string) => (await Deno.open(path)).readable;