mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 03:45:46 -06:00
17 lines
448 B
TypeScript
17 lines
448 B
TypeScript
// Whatsapp plugin module implements session behavior.
|
|
import { DEFAULT_CONNECTION_CONFIG } from "baileys";
|
|
|
|
export function createBaileysSignalRepository(
|
|
...args: Parameters<typeof DEFAULT_CONNECTION_CONFIG.makeSignalRepository>
|
|
) {
|
|
return DEFAULT_CONNECTION_CONFIG.makeSignalRepository(...args);
|
|
}
|
|
|
|
export {
|
|
BufferJSON,
|
|
fetchLatestBaileysVersion,
|
|
makeCacheableSignalKeyStore,
|
|
makeWASocket,
|
|
useMultiFileAuthState,
|
|
} from "baileys";
|