openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
16 lines • 514 B
TypeScript
import { i as OpenClawConfig } from "./types.openclaw-DABkiMzt.js";
//#region src/channels/plugins/directory-types.d.ts
/**
* Shared input for channel directory lookups.
*
* Directory-capable plugins receive the active config plus optional account
* scope, search text, and result limit from setup or command surfaces.
*/
type DirectoryConfigParams = {
cfg: OpenClawConfig;
accountId?: string | null;
query?: string | null;
limit?: number | null;
};
//#endregion
export { DirectoryConfigParams as t };