UNPKG

wuchale

Version:

Protobuf-like i18n from plain code

11 lines (10 loc) 304 B
import type { AI } from './index.js'; type GeminiOpts = { apiKey?: string; batchSize?: number; think?: boolean; parallel?: number; }; export declare function gemini({ apiKey, batchSize, think, parallel }?: GeminiOpts): AI | null; export declare const defaultGemini: AI | null; export {};