import { FeishuConfig, FeishuDomain } from "./types.js"; //#region src/client.d.ts /** * Credentials needed to create a Feishu client. * Both FeishuConfig and ResolvedFeishuAccount satisfy this interface. */ type FeishuClientCredentials = { accountId?: string; appId?: string; appSecret?: string; domain?: FeishuDomain; httpTimeoutMs?: number; config?: Pick; }; //#endregion export { FeishuClientCredentials };