openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
6 lines • 368 B
TypeScript
//#region src/routing/account-id.d.ts
declare const DEFAULT_ACCOUNT_ID = "default";
declare function normalizeAccountId(value: string | undefined | null): string;
declare function normalizeOptionalAccountId(value: string | undefined | null): string | undefined;
//#endregion
export { normalizeAccountId as n, normalizeOptionalAccountId as r, DEFAULT_ACCOUNT_ID as t };