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.

5 lines (4 loc) 194 B
// source: https://github.com/sindresorhus/type-fest/blob/main/source/literal-union.d.ts export type LiteralUnion<LiteralType, BaseType> = | LiteralType | (BaseType & Record<never, never>);